represent a channel that communicates on a local endpoint More...
#include <channel.hpp>
Public Member Functions | |
virtual | ~Channel () |
const FaceUri & | getUri () const |
virtual bool | isListening () const =0 |
Returns whether the channel is listening. More... | |
virtual size_t | size () const =0 |
Returns the number of faces in the channel. More... | |
Protected Member Functions | |
void | setUri (const FaceUri &uri) |
represent a channel that communicates on a local endpoint
A channel can listen on a local endpoint and initiate outgoing connection from a local endpoint. A channel creates Face objects and retains shared ownership of them.
Definition at line 52 of file channel.hpp.
|
virtualdefault |
|
inline |
Definition at line 59 of file channel.hpp.
References nfd::face::connectFaceClosedSignal(), isListening(), setUri(), and size().
|
pure virtual |
Returns whether the channel is listening.
Implemented in nfd::face::UnixStreamChannel, nfd::face::EthernetChannel, nfd::face::TcpChannel, nfd::face::WebSocketChannel, and nfd::face::UdpChannel.
Referenced by getUri().
|
pure virtual |
Returns the number of faces in the channel.
Implemented in nfd::face::UnixStreamChannel, nfd::face::EthernetChannel, nfd::face::TcpChannel, nfd::face::WebSocketChannel, and nfd::face::UdpChannel.
Referenced by getUri().
|
protected |
Definition at line 34 of file channel.cpp.
Referenced by nfd::face::EthernetChannel::EthernetChannel(), getUri(), nfd::face::TcpChannel::TcpChannel(), nfd::face::UdpChannel::UdpChannel(), nfd::face::UnixStreamChannel::UnixStreamChannel(), and nfd::face::WebSocketChannel::WebSocketChannel().