コード例 #1
0
ファイル: juce_Timer.cpp プロジェクト: ChunHungLiu/av-caster
    void callTimersSynchronously()
    {
        if (! isThreadRunning())
        {
            // (This is relied on by some plugins in cases where the MM has
            // had to restart and the async callback never started)
            cancelPendingUpdate();
            triggerAsyncUpdate();
        }

        callTimers();
    }
コード例 #2
0
ファイル: juce_Timer.cpp プロジェクト: randi2kewl/ShoutOut
 void handleMessage (const Message&)
 {
     callTimers();
 }