#include <Comm.h>
Inheritance diagram for Receiver::

Public Methods | |
| virtual | ~Receiver () |
| virtual string | uri ()=0 |
| virtual string& | uri (string &)=0 |
| virtual size_t | receive (char *, size_t)=0 throw (CommException) |
| virtual void | shutdown () |
a Receiver represents a generic level-2 input communication mechanism. In practice, a Receiver allows one to receive packets. This is a virtual class, specializations of this class will implement specific communication mechanisms.
|
|
destructor |
|
|
receives a message
Reimplemented in TCPReceiver, and UDPReceiver. |
|
|
closes this sender Reimplemented in TCPReceiver, and UDPReceiver. |
|
|
exernally visible URI for this receiver a URI is an external representation of the point of contact of this receiver. This URI can be used to create senders to contact this receiver. Reimplemented in TCPReceiver, and UDPReceiver. |
|
|
URI for this receiver a URI is an external representation of the point of contact of this receiver. This URI can be used to create senders to contact this receiver. Reimplemented in TCPReceiver, and UDPReceiver. |