DetectorGraph
2.0
|
A Pure interface that declares the Subscriber behavior. More...
Public Member Functions | |
virtual void | Evaluate (const T &)=0 |
Pure-virtual method that should Evaluate a piece of input data. More... | |
A Pure interface that declares the Subscriber behavior.
Detectors inherit from a number of versions of this interface to declare their input set.
A class FooDetector
acquires the "Subscriber of BarTopicState" behavior by inheriting SubscriberInterface
templated to BarTopicState
.
This interface serves a tiny purpose:
To enable the subscription Detectors must call Detector::Subscribe from the inheriting Detector's constructor:
Definition at line 59 of file subscriberinterface.hpp.
|
pure virtual |
Pure-virtual method that should Evaluate a piece of input data.
Implemented in DetectorGraph::Lag< T >, and DetectorGraph::TestSplitterDetector< OutA, OutB >.