LibreOffice
LibreOffice 24.2 SDK C/C++ API Reference
|
This struct contains the standard variables of a broadcaster. More...
#include <interfacecontainer.h>
Public Member Functions | |
OBroadcastHelperVar (::osl::Mutex &rMutex_) | |
Initialize the structure. More... | |
void | addListener (const keyType &key, const css::uno::Reference< css::uno::XInterface > &r) |
adds a listener threadsafe. More... | |
void | removeListener (const keyType &key, const css::uno::Reference< css::uno::XInterface > &r) |
removes a listener threadsafe More... | |
OInterfaceContainerHelper * | getContainer (const keyType &key) const |
Return the container created under this key. More... | |
Public Attributes | |
::osl::Mutex & | rMutex |
The shared mutex. More... | |
container | aLC |
ListenerContainer class is thread safe. More... | |
sal_Bool | bDisposed |
Dispose call ready. More... | |
sal_Bool | bInDispose |
In dispose call. More... | |
This struct contains the standard variables of a broadcaster.
Helper classes only know a reference to this struct instead of references to the four members. The access to the members must be guarded with rMutex.
The additional template parameter keyType has been added, because gcc can't compile addListener( const container::keyType &key ).
|
inline |
Initialize the structure.
bDispose and bInDispose are set to false.
rMutex_ | the mutex reference. |
|
inline |
adds a listener threadsafe.
|
inline |
Return the container created under this key.
|
inline |
removes a listener threadsafe
container cppu::OBroadcastHelperVar< container, keyType >::aLC |
ListenerContainer class is thread safe.
sal_Bool cppu::OBroadcastHelperVar< container, keyType >::bDisposed |
Dispose call ready.
sal_Bool cppu::OBroadcastHelperVar< container, keyType >::bInDispose |
In dispose call.
::osl::Mutex& cppu::OBroadcastHelperVar< container, keyType >::rMutex |
The shared mutex.