About
An implementation of an interface that declares an observable must implement the behaviour of the observable. The observable must be initiated, freed and invoked.
Implementation
To implement basic observable functionality an implementation must include a maxon::ObserverObjectClass object with MAXON_COMPONENT().
The observable declared with MAXON_OBSERVABLE() is available as a member variable with the defined name and a "_" prefix.
class ObserveMeImpl :
public maxon::Component<ObserveMeImpl, ObserveMeInterface>
{
public:
{
_count = 0;
}
void FreeComponent()
{
_ObservablePing.Free();
}
{
++_count;
iferr (_ObservablePing.Notify(_count))
{
}
}
private:
};
Definition: objectbase.h:2672
int32_t Int32
32 bit signed integer datatype.
Definition: apibase.h:175
return OK
Definition: apibase.h:2740
#define DiagnosticOutput(formatString,...)
Definition: debugdiagnostics.h:170
#define iferr(...)
Definition: errorbase.h:388
#define MAXON_COMPONENT(KIND,...)
Definition: objectbase.h:2229
#define MAXON_METHOD
Definition: interfacebase.h:1020
NORMAL
Definition: lib_birender.h:2
#define MAXON_OBSERVABLE_IMPL(NAME,...)
Definition: observable.h:256
#define iferr_scope
Definition: resultbase.h:1396
The observable must be implemented using MAXON_OBSERVABLE_IMPL().
ObservableBaseInterface
Observables are based on maxon::ObservableBaseInterface:
Subscriber notification:
Observers are handled with:
Further Reading