UMDS .NET API
6.14
|
class UMDSReceiverBase is the collection of common functionality for all UMDS receiving classes. It is purely internal. More...
Public Member Functions | |
abstract void | onEvent (UMDSMessage msg) |
Every Receiver must handle events such as loss. More... | |
abstract void | onRequest (UMDSMessage msg) |
Every Receiver must handle Request. More... | |
virtual void | log (int level, System.String comment) |
Log a receiver related message. This API currently does nothing unique, but is provided as an aid to users deriving from the class but may in the future be updated to identify the receiver automatically. More... | |
Object | getReceiverRecoveryInfoCbArg () |
class UMDSReceiverBase is the collection of common functionality for all UMDS receiving classes. It is purely internal.
|
virtual |
Log a receiver related message. This API currently does nothing unique, but is provided as an aid to users deriving from the class but may in the future be updated to identify the receiver automatically.
the UMDS exception
UMDSException |
References com.latencybusters.umds.UMDS.log(), and com.latencybusters.umds.UMDSServerConnection.UMDS.
|
pure virtual |
Every Receiver must handle events such as loss.
msg | The message containing an event |
Implemented in com.latencybusters.umds.UMDSPersistentReceiver, and com.latencybusters.umds.UMDSReceiver.
|
pure virtual |
Every Receiver must handle Request.
msg | The message containing an event |
Implemented in com.latencybusters.umds.UMDSPersistentReceiver, and com.latencybusters.umds.UMDSReceiver.
Referenced by com.latencybusters.umds.UMDSServerThread.UMDSServerThread().