#include <dispatcher.h>

Inheritance diagram for DBus::Timeout:
Inheritance graph

Public Member Functions

 Timeout (Internal *i)
 
virtual ~Timeout ()
 
int interval () const
 Gets the timeout interval. More...
 
bool enabled () const
 
bool handle ()
 Calls the timeout handler for this timeout. More...
 
virtual void toggle ()=0
 

Private Member Functions

DXXAPILOCAL Timeout (const Timeout &)
 

Private Attributes

Internal * _int
 

Detailed Description

Definition at line 35 of file dispatcher.h.

Constructor & Destructor Documentation

◆ Timeout() [1/2]

DBus::Timeout::Timeout ( Internal *  i)

◆ ~Timeout()

virtual DBus::Timeout::~Timeout ( )
inlinevirtual

Definition at line 43 of file dispatcher.h.

◆ Timeout() [2/2]

DXXAPILOCAL DBus::Timeout::Timeout ( const Timeout )
private

Member Function Documentation

◆ enabled()

◆ handle()

bool Timeout::handle ( )

Calls the timeout handler for this timeout.

This function should be called when the timeout occurs.

If this function returns FALSE, then there wasn't enough memory to handle the timeout. Typically just letting the timeout fire again next time it naturally times out is an adequate response to that problem, but you could try to do more if you wanted.

return false If there wasn't enough memory.

Definition at line 56 of file dispatcher.cpp.

References _int.

Referenced by DBus::BusDispatcher::timeout_expired(), DBus::Glib::BusTimeout::timeout_handler(), and DBus::Ecore::BusTimeout::timeout_handler().

◆ interval()

int Timeout::interval ( ) const

Gets the timeout interval.

The handle() should be called each time this interval elapses, starting after it elapses once.

The interval may change during the life of the timeout; if so, the timeout will be disabled and re-enabled (calling the "timeout toggled function") to notify you of the change.

return The interval in miliseconds.

Definition at line 46 of file dispatcher.cpp.

References _int.

Referenced by DBus::Ecore::BusTimeout::_enable(), and DBus::Glib::BusTimeout::_enable().

◆ toggle()

virtual void DBus::Timeout::toggle ( )
pure virtual

Member Data Documentation

◆ _int

Internal* DBus::Timeout::_int
private

Definition at line 83 of file dispatcher.h.

Referenced by enabled(), handle(), and interval().


The documentation for this class was generated from the following files: