iCub-main
|
The abstract base class for EventListeners that output to a port. More...
#include <IPortEventListener.h>
Public Member Functions | |
IPortEventListener (std::string pp) | |
Constructor. More... | |
IPortEventListener (const IPortEventListener &other) | |
Copy Constructor. More... | |
virtual | ~IPortEventListener () |
Destructor. More... | |
virtual IPortEventListener & | operator= (const IPortEventListener &other) |
Assignment operator. More... | |
virtual void | start () |
Starts the IEventListener. More... | |
virtual bool | configure (yarp::os::Searchable &config) |
virtual std::string | getInfo () |
Asks the event listener to return a string containing information on its configuration so far. More... | |
Public Member Functions inherited from iCub::learningmachine::IEventListener | |
IEventListener () | |
Constructor. More... | |
virtual | ~IEventListener () |
Destructor (empty). More... | |
virtual void | handle (IEvent &e) |
Default handler for any Event, which means the Event is ignored. More... | |
virtual void | handle (TrainEvent &e) |
Handling of a TrainEvent. More... | |
virtual void | handle (PredictEvent &e) |
Handling of a PredictEvent. More... | |
virtual IEventListener * | clone ()=0 |
Asks the event listener to return a new object of its type. More... | |
std::string | getName () const |
Retrieve the name of this IEventListener. More... | |
void | setName (std::string name) |
Set the name of this IEventListener. More... | |
virtual bool | isEnabled () |
Tells whether dispatching of events is enabled. More... | |
virtual void | setEnabled (bool val) |
Enables or disables dispatching of events. More... | |
Protected Member Functions | |
void | resetPort (std::string portName) |
Resets the port and opens it at the specified name. More... | |
Protected Attributes | |
yarp::os::Port | port |
The outgoing port for the events. More... | |
bool | verbose |
Verbosity controls whether events are printed to standard output. More... | |
std::string | portPrefix |
A prefix path for the ports that will be registered. More... | |
Protected Attributes inherited from iCub::learningmachine::IEventListener | |
std::string | name |
The name of this type of EventListener. More... | |
bool | enabled |
Boolean switch to disable or enable event the listener. More... | |
The abstract base class for EventListeners that output to a port.
This class is introduced so that base functionality to register ports can be inherited by multiple subclasses.
Definition at line 43 of file IPortEventListener.h.
|
inline |
Constructor.
pp | the standard prefix for opening the ports |
Definition at line 75 of file IPortEventListener.h.
|
inline |
Copy Constructor.
Definition at line 80 of file IPortEventListener.h.
|
inlinevirtual |
Destructor.
Definition at line 86 of file IPortEventListener.h.
|
virtual |
Reimplemented from iCub::learningmachine::IEventListener.
Definition at line 62 of file IPortEventListener.cpp.
|
inlinevirtual |
Asks the event listener to return a string containing information on its configuration so far.
Reimplemented from iCub::learningmachine::IEventListener.
Definition at line 114 of file IPortEventListener.h.
|
virtual |
Assignment operator.
Definition at line 29 of file IPortEventListener.cpp.
|
protected |
Resets the port and opens it at the specified name.
If passed an empty string the port is opened at the first free port with the predefined prefix.
portName | the name of the port |
Definition at line 37 of file IPortEventListener.cpp.
|
inlinevirtual |
Starts the IEventListener.
Reimplemented from iCub::learningmachine::IEventListener.
Definition at line 99 of file IPortEventListener.h.
|
protected |
The outgoing port for the events.
Definition at line 48 of file IPortEventListener.h.
|
protected |
A prefix path for the ports that will be registered.
Definition at line 58 of file IPortEventListener.h.
|
protected |
Verbosity controls whether events are printed to standard output.
Definition at line 53 of file IPortEventListener.h.