OpenShot Audio Library | OpenShotAudio 0.4.0
|
#include <juce_ListenerList.h>
Classes | |
struct | DummyBailOutChecker |
Public Types | |
using | ThisType = ListenerList<ListenerClass, ArrayType> |
using | ListenerType = ListenerClass |
Public Member Functions | |
ListenerList ()=default | |
~ListenerList () | |
void | add (ListenerClass *listenerToAdd) |
void | remove (ListenerClass *listenerToRemove) |
ErasedScopeGuard | addScoped (ListenerClass &listenerToAdd) |
int | size () const noexcept |
bool | isEmpty () const noexcept |
void | clear () |
bool | contains (ListenerClass *listener) const noexcept |
const ArrayType & | getListeners () const noexcept |
template<typename Callback> | |
void | call (Callback &&callback) |
template<typename Callback> | |
void | callExcluding (ListenerClass *listenerToExclude, Callback &&callback) |
template<typename Callback, typename BailOutCheckerType> | |
void | callChecked (const BailOutCheckerType &bailOutChecker, Callback &&callback) |
template<typename Callback, typename BailOutCheckerType> | |
void | callCheckedExcluding (ListenerClass *listenerToExclude, const BailOutCheckerType &bailOutChecker, Callback &&callback) |
template<typename... MethodArgs, typename... Args> | |
void | call (void(ListenerClass::*callbackFunction)(MethodArgs...), Args &&... args) |
template<typename... MethodArgs, typename... Args> | |
void | callExcluding (ListenerClass *listenerToExclude, void(ListenerClass::*callbackFunction)(MethodArgs...), Args &&... args) |
template<typename BailOutCheckerType, typename... MethodArgs, typename... Args> | |
void | callChecked (const BailOutCheckerType &bailOutChecker, void(ListenerClass::*callbackFunction)(MethodArgs...), Args &&... args) |
template<typename BailOutCheckerType, typename... MethodArgs, typename... Args> | |
void | callCheckedExcluding (ListenerClass *listenerToExclude, const BailOutCheckerType &bailOutChecker, void(ListenerClass::*callbackFunction)(MethodArgs...), Args &&... args) |
Holds a set of objects and can invoke a member function callback on each object in the set with a single call.
Use a ListenerList to manage a set of objects which need a callback, and you can invoke a member function by simply calling call(), callChecked(), or callExcluding().
E.g.
It is safe to add listeners, remove listeners, clear the listeners, and delete the ListenerList itself during any listener callback.
If a Listener is added during a callback, it is guaranteed not to be called in the same iteration.
If a Listener is removed during a callback, it is guaranteed not to be called if it hasn't already been called.
If the ListenerList is cleared or deleted during a callback, it is guaranteed that no more listeners will be called.
By default a ListenerList is not thread safe. If thread-safety is required, you can provide a thread-safe Array type as the second type parameter e.g.
When calling listeners the iteration can be escaped early by using a "BailOutChecker". A BailOutChecker is a type that has a public member function with the following signature:
This function will be called before making a call to each listener. For an example see the DummyBailOutChecker.
Definition at line 80 of file juce_ListenerList.h.
using juce::ListenerList< ListenerClass, ArrayType >::ListenerType = ListenerClass |
Definition at line 322 of file juce_ListenerList.h.
using juce::ListenerList< ListenerClass, ArrayType >::ThisType = ListenerList<ListenerClass, ArrayType> |
Definition at line 321 of file juce_ListenerList.h.
|
default |
Creates an empty list.
|
inline |
Destructor.
Definition at line 88 of file juce_ListenerList.h.
|
inline |
Adds a listener to the list. A listener can only be added once, so if the listener is already in the list, this method has no effect.
If a Listener is added during a callback, it is guaranteed not to be called in the same iteration.
Definition at line 100 of file juce_ListenerList.h.
Referenced by addScoped().
|
inline |
Adds a listener that will be automatically removed again when the Guard is destroyed.
Be very careful to ensure that the ErasedScopeGuard is destroyed or released before the ListenerList is destroyed, otherwise the ErasedScopeGuard may attempt to dereference a dangling pointer when it is destroyed, which will result in a crash.
Definition at line 138 of file juce_ListenerList.h.
|
inline |
Calls an invokable object for each listener in the list.
Definition at line 182 of file juce_ListenerList.h.
|
inline |
Calls a specific listener method for each listener in the list.
Definition at line 255 of file juce_ListenerList.h.
|
inline |
Calls an invokable object for each listener in the list, additionally checking the bail-out checker before each call.
See the class description for info about writing a bail-out checker.
Definition at line 207 of file juce_ListenerList.h.
|
inline |
Calls a specific listener method for each listener in the list, additionally checking the bail-out checker before each call.
See the class description for info about writing a bail-out checker.
Definition at line 283 of file juce_ListenerList.h.
|
inline |
Calls an invokable object for each listener in the list, except for the listener specified by listenerToExclude, additionally checking the bail-out checker before each call.
See the class description for info about writing a bail-out checker.
Definition at line 221 of file juce_ListenerList.h.
Referenced by call(), call(), callChecked(), callChecked(), callCheckedExcluding(), callExcluding(), and callExcluding().
|
inline |
Calls a specific listener method for each listener in the list, except for the listener specified by listenerToExclude, additionally checking the bail-out checker before each call.
See the class description for info about writing a bail-out checker.
Definition at line 300 of file juce_ListenerList.h.
|
inline |
Calls an invokable object for each listener in the list, except for the listener specified by listenerToExclude.
Definition at line 193 of file juce_ListenerList.h.
|
inline |
Calls a specific listener method for each listener in the list, except for the listener specified by listenerToExclude.
Definition at line 267 of file juce_ListenerList.h.
|
inline |
Clears the list.
If the ListenerList is cleared during a callback, it is guaranteed that no more listeners will be called.
Definition at line 155 of file juce_ListenerList.h.
Referenced by ~ListenerList().
|
inlinenoexcept |
Returns true if the specified listener has been added to the list.
Definition at line 166 of file juce_ListenerList.h.
|
inlinenoexcept |
Returns the raw array of listeners.
Any attempt to mutate the array may result in undefined behaviour.
If the array uses a mutex/CriticalSection, reading from the array without first obtaining the lock may potentially result in undefined behaviour.
Definition at line 177 of file juce_ListenerList.h.
|
inlinenoexcept |
Returns true if no listeners are registered, false otherwise.
Definition at line 148 of file juce_ListenerList.h.
|
inline |
Removes a listener from the list. If the listener wasn't in the list, this has no effect.
If a Listener is removed during a callback, it is guaranteed not to be called if it hasn't already been called.
Definition at line 114 of file juce_ListenerList.h.
Referenced by addScoped().
|
inlinenoexcept |
Returns the number of registered listeners.
Definition at line 145 of file juce_ListenerList.h.