|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
Public Types | |
| using | LockType = CriticalSection |
Public Member Functions | |
| void | run () override |
| Must be implemented to perform the thread's actual code. | |
| void | callTimers () |
| void | callTimersSynchronously () |
| void | addTimer (Timer *t) |
| void | removeTimer (Timer *t) |
| void | resetTimerCounter (Timer *t) noexcept |
Definition at line 26 of file juce_Timer.cpp.
Definition at line 29 of file juce_Timer.cpp.
| juce::Timer::TimerThread::TimerThread | ( | ) |
Definition at line 31 of file juce_Timer.cpp.
|
override |
Definition at line 36 of file juce_Timer.cpp.
Definition at line 124 of file juce_Timer.cpp.
| void juce::Timer::TimerThread::callTimers | ( | ) |
Definition at line 85 of file juce_Timer.cpp.
| void juce::Timer::TimerThread::callTimersSynchronously | ( | ) |
Definition at line 119 of file juce_Timer.cpp.
Definition at line 144 of file juce_Timer.cpp.
Definition at line 163 of file juce_Timer.cpp.
|
overridevirtual |
Must be implemented to perform the thread's actual code.
Remember that the thread must regularly check the threadShouldExit() method whilst running, and if this returns true it should return from the run() method as soon as possible to avoid being forcibly killed.
Implements juce::Thread.
Definition at line 43 of file juce_Timer.cpp.