This class is in charge of the application's event-dispatch loop. More...
Classes | |
class | Lock |
A lock you can use to lock the message manager. More... | |
class | MessageBase |
Internal class used as the base class for all message objects. More... | |
Public Member Functions | |
void | runDispatchLoop () |
Runs the event dispatch loop until a stop message is posted. | |
void | stopDispatchLoop () |
Sends a signal that the dispatch loop should terminate. | |
bool | hasStopMessageBeenSent () const noexcept |
Returns true if the stopDispatchLoop() method has been called. | |
bool | runDispatchLoopUntil (int millisecondsToRunFor) |
Synchronously dispatches messages until a given time has elapsed. | |
void * | callFunctionOnMessageThread (MessageCallbackFunction *callback, void *userData) |
Calls a function using the message-thread. | |
bool | isThisTheMessageThread () const noexcept |
Returns true if the caller-thread is the message thread. | |
void | setCurrentThreadAsMessageThread () |
Called to tell the manager that the current thread is the one that's running the dispatch loop. | |
Thread::ThreadID | getCurrentMessageThread () const noexcept |
Returns the ID of the current message thread, as set by setCurrentThreadAsMessageThread(). | |
bool | currentThreadHasLockedMessageManager () const noexcept |
Returns true if the caller thread has currently got the message manager locked. | |
void | registerBroadcastListener (ActionListener *listener) |
Registers a listener to get told about broadcast messages. | |
void | deregisterBroadcastListener (ActionListener *listener) |
Deregisters a broadcast listener. | |
Static Public Member Functions | |
static MessageManager * | getInstance () |
Returns the global instance of the MessageManager. | |
static MessageManager * | getInstanceWithoutCreating () noexcept |
Returns the global instance of the MessageManager, or nullptr if it doesn't exist. | |
static void | deleteInstance () |
Deletes the global MessageManager instance. | |
template<typename Function> | |
static bool | callAsync (Function &&function) |
Asynchronously invokes a function or C++11 lambda on the message thread. | |
template<typename Function> | |
static auto | callSync (Function &&function) -> CallSyncResult< decltype(function())> |
Similar to callFunctionOnMessageThread(), calls a function on the message thread, blocking the current thread until a result is available. | |
static bool | existsAndIsLockedByCurrentThread () noexcept |
Returns true if there's an instance of the MessageManager, and if the current thread has the lock on it. | |
static bool | existsAndIsCurrentThread () noexcept |
Returns true if there's an instance of the MessageManager, and if the current thread is running it. | |
static void | broadcastMessage (const String &messageText) |
Sends a message to all other JUCE applications that are running. | |
This class is in charge of the application's event-dispatch loop.
|
static |
Returns the global instance of the MessageManager.
Referenced by callSync().
|
staticnoexcept |
Returns the global instance of the MessageManager, or nullptr if it doesn't exist.
|
static |
Deletes the global MessageManager instance.
Does nothing if no instance had been created.
References deleteInstance().
Referenced by deleteInstance().
void MessageManager::runDispatchLoop | ( | ) |
Runs the event dispatch loop until a stop message is posted.
This method is only intended to be run by the application's startup routine, as it blocks, and will only return after the stopDispatchLoop() method has been used.
References runDispatchLoop().
Referenced by runDispatchLoop().
void MessageManager::stopDispatchLoop | ( | ) |
Sends a signal that the dispatch loop should terminate.
After this is called, the runDispatchLoop() or runDispatchLoopUntil() methods will be interrupted and will return.
References stopDispatchLoop().
Referenced by stopDispatchLoop().
|
noexcept |
Returns true if the stopDispatchLoop() method has been called.
References hasStopMessageBeenSent().
Referenced by hasStopMessageBeenSent().
bool MessageManager::runDispatchLoopUntil | ( | int | millisecondsToRunFor | ) |
Synchronously dispatches messages until a given time has elapsed.
Returns false if a quit message has been posted by a call to stopDispatchLoop(), otherwise returns true.
|
static |
Asynchronously invokes a function or C++11 lambda on the message thread.
function | the function to call, which should have no arguments |
Referenced by callSync().
void * MessageManager::callFunctionOnMessageThread | ( | MessageCallbackFunction * | callback, |
void * | userData ) |
Calls a function using the message-thread.
This can be used by any thread to cause this function to be called-back by the message thread. If it's the message-thread that's calling this method, then the function will just be called; if another thread is calling, a message will be posted to the queue, and this method will block until that message is delivered, the function is called, and the result is returned.
Be careful not to cause any deadlocks with this! It's easy to do - e.g. if the caller thread has a critical section locked, which an unrelated message callback then tries to lock before the message thread gets round to processing this callback.
callback | the function to call - its signature must be void* myCallbackFunction (void*)
|
userData | a user-defined pointer that will be passed to the function that gets called |
|
static |
Similar to callFunctionOnMessageThread(), calls a function on the message thread, blocking the current thread until a result is available.
Be careful not to cause any deadlocks with this! It's easy to do - e.g. if the caller thread has a critical section locked, which an unrelated message callback then tries to lock before the message thread gets round to processing this callback.
function | the function to call, which should have no parameters |
References callAsync(), getInstance(), isThisTheMessageThread(), and jassertfalse.
|
noexcept |
Returns true if the caller-thread is the message thread.
Referenced by callSync().
void MessageManager::setCurrentThreadAsMessageThread | ( | ) |
Called to tell the manager that the current thread is the one that's running the dispatch loop.
(Best to ignore this method unless you really know what you're doing..)
References setCurrentThreadAsMessageThread().
Referenced by setCurrentThreadAsMessageThread().
|
noexcept |
Returns the ID of the current message thread, as set by setCurrentThreadAsMessageThread().
(Best to ignore this method unless you really know what you're doing..)
References getCurrentMessageThread().
Referenced by getCurrentMessageThread().
|
noexcept |
Returns true if the caller thread has currently got the message manager locked.
see the MessageManagerLock class for more info about this.
This will be true if the caller is the message thread, because that automatically gains a lock while a message is being dispatched.
|
staticnoexcept |
Returns true if there's an instance of the MessageManager, and if the current thread has the lock on it.
References existsAndIsLockedByCurrentThread().
Referenced by existsAndIsLockedByCurrentThread().
|
staticnoexcept |
Returns true if there's an instance of the MessageManager, and if the current thread is running it.
References existsAndIsCurrentThread().
Referenced by existsAndIsCurrentThread().
|
static |
Sends a message to all other JUCE applications that are running.
messageText | the string that will be passed to the actionListenerCallback() method of the broadcast listeners in the other app. |
References broadcastMessage().
Referenced by broadcastMessage().
void MessageManager::registerBroadcastListener | ( | ActionListener * | listener | ) |
Registers a listener to get told about broadcast messages.
The actionListenerCallback() callback's string parameter is the message passed into broadcastMessage().
References registerBroadcastListener().
Referenced by registerBroadcastListener().
void MessageManager::deregisterBroadcastListener | ( | ActionListener * | listener | ) |
Deregisters a broadcast listener.
References deregisterBroadcastListener().
Referenced by deregisterBroadcastListener().