Callback abstract class on write() More...
#include <PortCallback.h>
Public Member Functions | |
virtual void | operator() (const DataType &value)=0 |
Callback function. More... | |
virtual | ~OnWrite (void) |
Destructor. More... | |
Callback abstract class on write()
This is the interface for callback invoked immediately before data is done write() into the DataPort's buffer.
DataType | Data type to write into the buffer |
Definition at line 192 of file PortCallback.h.
|
inlinevirtual |
|
pure virtual |
Callback function.
This is the callback method invoked immediately before data is written into the buffer.
value | Data that is written into the buffer |
Implemented in OutPort::OnWriteMock< DataType >, and InPort::OnWriteMock< DataType >.