![]() |
Imt.Base C++ API V4.1.1.0
|
Service for remote objects to receive data from another remote object. More...
#include <Imt.Base.Lib.Remoting/inc/Imt.Base.Lib.Remoting/RemotingReceiveService.h>
Public Member Functions | |
| RemotingReceiveService ()=default | |
| Constructor. | |
| void | onDataReceived (uint8_t const *const pData, uint32_t const countDataBytes) final |
Public Member Functions inherited from imt::base::lib::remoting::RemotingServiceBase | |
| RemotingServiceBase () | |
| Constructor. | |
| bool | isRemoteObjectAdded (RemoteObjectIfc const &remoteObject) const override |
| bool | isRemoteObjectAdded (int32_t const remoteObjectId) const override |
| bool | add (RemoteObjectIfc &remoteObject) override |
| bool | removeObject (RemoteObjectIfc &remoteObject) override |
| uint32_t | getRemoteObjectCount () const |
| Returns the count of remote objects that have been added to the remoting service. | |
Public Member Functions inherited from imt::base::lib::remoting::RemotingServiceIfc | |
| virtual | ~RemotingServiceIfc ()=default |
| Destructor. | |
| virtual bool | isRemoteObjectAdded (RemoteObjectIfc const &remoteObject) const =0 |
| Returns true if the given remote object id is added to the remoting service. | |
| virtual bool | isRemoteObjectAdded (int32_t const remoteObjectId) const =0 |
| Returns true if the given remote object id is added to the remoting service. | |
| virtual bool | add (RemoteObjectIfc &remoteObject)=0 |
| Adds a remote object. | |
| virtual bool | removeObject (RemoteObjectIfc &remoteObject)=0 |
| Removes the given remote object. | |
| virtual void | onDataReceived (uint8_t const *const pData, uint32_t const countDataBytes)=0 |
| Callback if data is received. | |
Service for remote objects to receive data from another remote object.
Definition at line 21 of file RemotingReceiveService.h.
|
default |
Constructor.
|
finalvirtual |
Implements imt::base::lib::remoting::DataReceiverIfc.