AAO DRAMA/DRAMA2 C++ Interface
DRAMA C++11 and later interface

◆ PollRescheduleEvent()

virtual void drama::git::Task::PollRescheduleEvent ( MessageHandler messageHandler)
virtual

Poll action reschedule event handler.

This method is invoked if the POLL action receives a reschedule event, but only if PollObeyOverride() returned false.

Reschedule events are one of the most common events for poll handlers to be interested in, so this handler allows a sub-class to override the behavior without having to do all the work needed if it were to use PollObeyOverride().

The default implementation does nothing.

Parameters
messageHandlerThe POLL message handler. An implementer can access the reason for the entry using messageHandler->GetEntry(), output messages using messageHandler->MessageUser() etc.