#include <Strategies_T.h>
Inheritance diagram for ACE_Scheduling_Strategy< SVC_HANDLER >:

Public Types | |
| typedef ACE_TYPENAME SVC_HANDLER::addr_type | addr_type |
| typedef SVC_HANDLER | handler_type |
| typedef ACE_TYPENAME SVC_HANDLER::stream_type | stream_type |
Public Member Functions | |
| ACE_Scheduling_Strategy (SVC_HANDLER *=0) | |
| Constructor. | |
| virtual | ~ACE_Scheduling_Strategy (void) |
| Destructor. | |
| virtual int | suspend (void) |
| Suspend hook. | |
| virtual int | resume (void) |
| Resume hook. | |
| virtual void | dump (void) const |
| Dump the state of the object. | |
This class provides a strategy that allows arbitrarily sophisticated service suspension and resumption. The default behavior is to do nothing...
Definition at line 631 of file Strategies_T.h.
|
|||||
|
Definition at line 636 of file Strategies_T.h. |
|
|||||
|
Definition at line 637 of file Strategies_T.h. |
|
|||||
|
Definition at line 638 of file Strategies_T.h. |
|
||||||||||
|
Constructor.
Definition at line 153 of file Strategies_T.inl. References ACE_TRACE.
00154 {
00155 ACE_TRACE ("ACE_Scheduling_Strategy<SVC_HANDLER>::ACE_Scheduling_Strategy");
00156 }
|
|
||||||||||
|
Destructor.
Definition at line 1352 of file Strategies_T.cpp. References ACE_TRACE.
01353 {
01354 ACE_TRACE ("ACE_Scheduling_Strategy<SVC_HANDLER>::~ACE_Scheduling_Strategy");
01355 }
|
|
||||||||||
|
Dump the state of the object.
Reimplemented in ACE_Schedule_All_Reactive_Strategy< SVC_HANDLER >, and ACE_Schedule_All_Threaded_Strategy< SVC_HANDLER >. Definition at line 1372 of file Strategies_T.cpp. References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_TRACE, and LM_DEBUG. Referenced by ACE_Schedule_All_Threaded_Strategy< SVC_HANDLER >::dump(), ACE_Schedule_All_Reactive_Strategy< SVC_HANDLER >::dump(), and ACE_Strategy_Acceptor< SVC_HANDLER, >::dump().
|
|
||||||||||
|
Resume hook.
Reimplemented in ACE_Schedule_All_Reactive_Strategy< SVC_HANDLER >, and ACE_Schedule_All_Threaded_Strategy< SVC_HANDLER >. Definition at line 1365 of file Strategies_T.cpp. References ACE_TRACE. Referenced by ACE_Strategy_Acceptor< SVC_HANDLER, >::resume().
01366 {
01367 ACE_TRACE ("ACE_Scheduling_Strategy<SVC_HANDLER>::resume");
01368 return -1;
01369 }
|
|
||||||||||
|
Suspend hook.
Reimplemented in ACE_Schedule_All_Reactive_Strategy< SVC_HANDLER >, and ACE_Schedule_All_Threaded_Strategy< SVC_HANDLER >. Definition at line 1358 of file Strategies_T.cpp. References ACE_TRACE. Referenced by ACE_Strategy_Acceptor< SVC_HANDLER, >::suspend().
01359 {
01360 ACE_TRACE ("ACE_Scheduling_Strategy<SVC_HANDLER>::suspend");
01361 return -1;
01362 }
|
1.3.6