Friendly LWM2M client
wpp::InstEventObserver Class Reference

The InstEventObserver class is an abstract base class that defines the interface for observing instance events. More...

#include <InstEventObserver.h>

+ Collaboration diagram for wpp::InstEventObserver:

Public Member Functions

virtual ~InstEventObserver ()
 
virtual void instEvent (Instance &inst, EVENT_ID_T eventId)
 Notifies observer about the generation of a specific event for a specific implementation of the object. Each implementation of the object can have its own specific events. More...
 

Detailed Description

The InstEventObserver class is an abstract base class that defines the interface for observing instance events.

This class provides a set of virtual functions that can be overridden to receive notifications about instance events. It is intended to be subclassed by concrete observer classes that are interested in monitoring the generation of specific events for a specific instance.

Definition at line 17 of file InstEventObserver.h.

Constructor & Destructor Documentation

◆ ~InstEventObserver()

virtual wpp::InstEventObserver::~InstEventObserver ( )
inlinevirtual

Definition at line 19 of file InstEventObserver.h.

Member Function Documentation

◆ instEvent()

virtual void wpp::InstEventObserver::instEvent ( Instance inst,
EVENT_ID_T  eventId 
)
inlinevirtual

Notifies observer about the generation of a specific event for a specific implementation of the object. Each implementation of the object can have its own specific events.

Definition at line 25 of file InstEventObserver.h.