diff options
author | Steve Huston <shuston@riverace.com> | 2002-02-18 23:26:06 +0000 |
---|---|---|
committer | Steve Huston <shuston@riverace.com> | 2002-02-18 23:26:06 +0000 |
commit | f8d01b98ec0e613825089b5916d5f92114600a46 (patch) | |
tree | 72e6854710f733b318951e2eef07cc361af44712 /ace/Reactor.h | |
parent | d6cdb9f88c7f972f6055f38f8f83042b3e3388b6 (diff) | |
download | ATCD-f8d01b98ec0e613825089b5916d5f92114600a46.tar.gz |
ChangeLogTag:Mon Feb 18 18:23:49 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'ace/Reactor.h')
-rw-r--r-- | ace/Reactor.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ace/Reactor.h b/ace/Reactor.h index 07d2bc98bdd..ef9517c57b5 100644 --- a/ace/Reactor.h +++ b/ace/Reactor.h @@ -173,6 +173,10 @@ public: * itself. Deactivating the Reactor would allow the Reactor to be * shutdown gracefully. Internally the Reactor calls deactivate () * on the underlying implementation. + * Any queued notifications remain queued on return from this method. + * If the event loop is restarted in the future, the notifications + * will be dispatched then. If the reactor is closed or deleted without + * further dispatching, the notifications will be lost. */ virtual int end_reactor_event_loop (void); @@ -192,6 +196,10 @@ public: int delete_implementation = 0); /// Close down and release all resources. + /** + * Any notifications that remain queued on this reactor instance are + * lost. + */ virtual ~ACE_Reactor (void); /** |