API Guides > ConceptRT 3.x
IThreadSectionWaitListener Class Referenceabstract

Thread section wait listener interface. More...

Detailed Description

Thread section wait listener interface.

Enables us to connect to the enter and leave section wait. Section wait are defined arround blocking operating system calls.

+ Inheritance diagram for IThreadSectionWaitListener:

Public Member Methods

virtual void LeaveSectionWait ()=0
 Methods called when the thread leave a section wait. More...
 
virtual void EnterSectionWait ()=0
 Methods called when the thread enter a section wait. More...
 

Methods Documentation

virtual void EnterSectionWait ( )
pure virtual

Methods called when the thread enter a section wait.

Implemented in SynchronThreadGroup.

virtual void LeaveSectionWait ( )
pure virtual

Methods called when the thread leave a section wait.

Implemented in SynchronThreadGroup.