1#ifndef _DITTO_OBSERVER_
2#define _DITTO_OBSERVER_
21 virtual void on_stop() = 0;
An observation token returned by any observation API in the Ditto SDK. Retain this object to continue...
Definition: Observer.hpp:11
void stop()
Stops the observation and cleans up all associated resources.
Definition: Observer.cpp:10
Observer()
Constructs a new Observer.
Definition: Observer.cpp:4
~Observer()
Destroy the Abstract Observer object canceling the observer if it hasn't been done in stop
Definition: Observer.cpp:8