Ditto 1.1.7
Observer.hpp
1#ifndef _DITTO_OBSERVER_
2#define _DITTO_OBSERVER_
3
4namespace ditto {
9class Observer {
10public:
14 virtual void stop() = 0;
15};
16} // namespace ditto
17
18#endif
An observation token returned by any observation API in the Ditto SDK. Retain this object to continue...
Definition: Observer.hpp:9
virtual void stop()=0
Stops the observation and cleans up all associated resources.