|
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 Member Functions | |
| ChildProcessPingThread (int timeout) | |
| void | startPinging () |
| void | pingReceived () noexcept |
| void | triggerConnectionLostMessage () |
| virtual bool | sendPingMessage (const MemoryBlock &)=0 |
| virtual void | pingFailed ()=0 |
| void | cancelPendingUpdate () noexcept |
| This will stop any pending updates from happening. | |
Public Member Functions inherited from juce::Thread | |
| Thread (const String &threadName, size_t threadStackSize=osDefaultStackSize) | |
| Creates a thread. | |
| virtual | ~Thread () |
| Destructor. | |
| bool | startThread () |
| Attempts to start a new thread with default ('Priority::normal') priority. | |
| bool | startThread (Priority newPriority) |
| Attempts to start a new thread with a given priority. | |
| bool | startRealtimeThread (const RealtimeOptions &options) |
| Starts the thread with realtime performance characteristics on platforms that support it. | |
| bool | stopThread (int timeOutMilliseconds) |
| Attempts to stop the thread running. | |
| bool | isThreadRunning () const |
| Returns true if the thread is currently active. | |
| void | signalThreadShouldExit () |
| Sets a flag to tell the thread it should stop. | |
| bool | threadShouldExit () const |
| Checks whether the thread has been told to stop running. | |
| bool | waitForThreadToExit (int timeOutMilliseconds) const |
| Waits for the thread to stop. | |
| void | addListener (Listener *) |
| Add a listener to this thread which will receive a callback when signalThreadShouldExit was called on this thread. | |
| void | removeListener (Listener *) |
| Removes a listener added with addListener. | |
| bool | isRealtime () const |
| Returns true if this Thread represents a realtime thread. | |
| void | setAffinityMask (uint32 affinityMask) |
| Sets the affinity mask for the thread. | |
| bool | wait (double timeOutMilliseconds) const |
| Suspends the execution of this thread until either the specified timeout period has elapsed, or another thread calls the notify() method to wake it up. | |
| void | notify () const |
| Wakes up the thread. | |
| ThreadID | getThreadId () const noexcept |
| Returns the ID of this thread. | |
| const String & | getThreadName () const noexcept |
| Returns the name of the thread. | |
Public Attributes | |
| int | timeoutMs |
Additional Inherited Members | |
Public Types inherited from juce::Thread | |
| enum class | Priority { highest , high , normal , low , background } |
| The different runtime priorities of non-realtime threads. More... | |
| using | ThreadID = void * |
| A value type used for thread IDs. | |
Static Public Member Functions inherited from juce::Thread | |
| static bool | launch (std::function< void()> functionToRun) |
| Invokes a lambda or function on its own thread with the default priority. | |
| static bool | launch (Priority priority, std::function< void()> functionToRun) |
| Invokes a lambda or function on its own thread with a custom priority. | |
| static bool | currentThreadShouldExit () |
| Checks whether the current thread has been told to stop running. | |
| static void JUCE_CALLTYPE | setCurrentThreadAffinityMask (uint32 affinityMask) |
| Changes the affinity mask for the caller thread. | |
| static void JUCE_CALLTYPE | sleep (int milliseconds) |
| Suspends the execution of the current thread until the specified timeout period has elapsed (note that this may not be exact). | |
| static void JUCE_CALLTYPE | yield () |
| Yields the current thread's CPU time-slot and allows a new thread to run. | |
| static ThreadID JUCE_CALLTYPE | getCurrentThreadId () |
| Returns an id that identifies the caller thread. | |
| static Thread *JUCE_CALLTYPE | getCurrentThread () |
| Finds the thread object that is currently running. | |
| static void JUCE_CALLTYPE | setCurrentThreadName (const String &newThreadName) |
| Changes the name of the caller thread. | |
| static void | initialiseJUCE (void *jniEnv, void *jContext) |
| Initialises the JUCE subsystem for projects not created by the Projucer. | |
Static Public Attributes inherited from juce::Thread | |
| static constexpr size_t | osDefaultStackSize |
Protected Member Functions inherited from juce::Thread | |
| Priority | getPriority () const |
| Returns the current priority of this thread. | |
| bool | setPriority (Priority newPriority) |
| Attempts to set the priority for this thread. | |
Definition at line 46 of file juce_ConnectedChildProcess.cpp.
| juce::ChildProcessPingThread::ChildProcessPingThread | ( | int | timeout | ) |
Definition at line 49 of file juce_ConnectedChildProcess.cpp.
|
noexcept |
This will stop any pending updates from happening.
If called after triggerAsyncUpdate() and before the handleAsyncUpdate() callback happens, this will cancel the handleAsyncUpdate() callback.
Note that this method simply cancels the next callback - if a callback is already in progress on a different thread, this won't block until the callback finishes, so there's no guarantee that the callback isn't still running when the method returns.
Definition at line 76 of file juce_AsyncUpdater.cpp.
|
noexcept |
Definition at line 56 of file juce_ConnectedChildProcess.cpp.
| void juce::ChildProcessPingThread::startPinging | ( | ) |
Definition at line 54 of file juce_ConnectedChildProcess.cpp.
| void juce::ChildProcessPingThread::triggerConnectionLostMessage | ( | ) |
Definition at line 57 of file juce_ConnectedChildProcess.cpp.
| int juce::ChildProcessPingThread::timeoutMs |
Definition at line 62 of file juce_ConnectedChildProcess.cpp.