Forward calls to a chain of Callback. More...
#include "traced-callback.h"
Public Types | |
typedef void(* | Uint32Callback) (const uint32_t value) |
TracedCallback signature for POD. More... | |
Public Member Functions | |
TracedCallback () | |
Constructor. More... | |
void | Connect (const CallbackBase &callback, std::string path) |
Append a Callback to the chain with a context. More... | |
void | ConnectWithoutContext (const CallbackBase &callback) |
Append a Callback to the chain (without a context). More... | |
void | Disconnect (const CallbackBase &callback, std::string path) |
Remove from the chain a Callback which was connected with a context. More... | |
void | DisconnectWithoutContext (const CallbackBase &callback) |
Remove from the chain a Callback which was connected without a context. More... | |
bool | IsEmpty () const |
Checks if the Callbacks list is empty. More... | |
void | operator() (Ts... args) const |
Functor which invokes the chain of Callbacks. More... | |
Private Types | |
typedef std::list< Callback< void, Ts... > > | CallbackList |
Container type for holding the chain of Callbacks. More... | |
Private Attributes | |
CallbackList | m_callbackList |
The chain of Callbacks. More... | |
Forward calls to a chain of Callback.
A TracedCallback has almost exactly the same API as a normal Callback but instead of forwarding calls to a single function (as a Callback normally does), it forwards calls to a chain of Callback. Connect adds a Callback at the end of the chain of callbacks. Disconnect removes a Callback from the chain of callbacks.
This is a functor: the chain of Callbacks is invoked by calling the operator()
form with the appropriate number of arguments.
Ts | [explicit] Types of the functor arguments. |
Definition at line 52 of file traced-callback.h.
|
private |
Container type for holding the chain of Callbacks.
Ts | [deduced] Types of the functor arguments. |
Definition at line 115 of file traced-callback.h.
typedef void(* ns3::TracedCallback< Ts >::Uint32Callback) (const uint32_t value) |
TracedCallback signature for POD.
[in] | value | Value of the traced variable. |
Definition at line 106 of file traced-callback.h.
ns3::TracedCallback< Ts >::TracedCallback |
Constructor.
Definition at line 130 of file traced-callback.h.
void ns3::TracedCallback< Ts >::Connect | ( | const CallbackBase & | callback, |
std::string | path | ||
) |
Append a Callback to the chain with a context.
The context string will be provided as the first argument to the Callback.
[in] | callback | Callback to add to chain. |
[in] | path | Context string to provide when invoking the Callback. |
Definition at line 146 of file traced-callback.h.
References ns3::Callback< R, T1, T2, T3, T4, T5, T6, T7, T8, T9 >::Bind(), and NS_FATAL_ERROR.
Referenced by ns3::TracedValue< T >::Connect().
void ns3::TracedCallback< Ts >::ConnectWithoutContext | ( | const CallbackBase & | callback | ) |
Append a Callback to the chain (without a context).
[in] | callback | Callback to add to chain. |
Definition at line 135 of file traced-callback.h.
References NS_FATAL_ERROR_NO_MSG.
Referenced by ns3::CsmaNetDevice::AddLinkChangeCallback(), ns3::FdNetDevice::AddLinkChangeCallback(), ns3::LrWpanNetDevice::AddLinkChangeCallback(), ns3::LteNetDevice::AddLinkChangeCallback(), ns3::SimpleNetDevice::AddLinkChangeCallback(), ns3::PointToPointNetDevice::AddLinkChangeCallback(), ns3::MockNetDevice::AddLinkChangeCallback(), ns3::AlohaNoackNetDevice::AddLinkChangeCallback(), ns3::TapBridge::AddLinkChangeCallback(), ns3::UanNetDevice::AddLinkChangeCallback(), ns3::WifiNetDevice::AddLinkChangeCallback(), ns3::TracedValue< T >::ConnectWithoutContext(), and BasicTracedCallbackTestCase::DoRun().
void ns3::TracedCallback< Ts >::Disconnect | ( | const CallbackBase & | callback, |
std::string | path | ||
) |
Remove from the chain a Callback which was connected with a context.
[in] | callback | Callback to remove from the chain. |
[in] | path | Context path which was used to connect the Callback. |
Definition at line 175 of file traced-callback.h.
References ns3::Callback< R, T1, T2, T3, T4, T5, T6, T7, T8, T9 >::Bind(), ns3::Config::DisconnectWithoutContext(), and NS_FATAL_ERROR.
Referenced by ns3::TracedValue< T >::Disconnect().
void ns3::TracedCallback< Ts >::DisconnectWithoutContext | ( | const CallbackBase & | callback | ) |
Remove from the chain a Callback which was connected without a context.
[in] | callback | Callback to remove from the chain. |
Definition at line 158 of file traced-callback.h.
Referenced by ns3::TracedValue< T >::DisconnectWithoutContext(), and BasicTracedCallbackTestCase::DoRun().
bool ns3::TracedCallback< Ts >::IsEmpty | ( | void | ) | const |
Checks if the Callbacks list is empty.
Definition at line 198 of file traced-callback.h.
Referenced by ns3::WifiPhy::NotifyRxEnd(), ns3::WifiPhy::NotifyTxDrop(), and ns3::WifiPhy::NotifyTxEnd().
void ns3::TracedCallback< Ts >::operator() | ( | Ts... | args | ) | const |
Functor which invokes the chain of Callbacks.
Ts | [deduced] Types of the functor arguments. |
[in] | args | The arguments to the functor |
Definition at line 187 of file traced-callback.h.
|
private |
The chain of Callbacks.
Definition at line 117 of file traced-callback.h.