summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/EventHandler.h
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-04-02 16:55:15 +0000
committerMarc Laukien <marc@zeroc.com>2002-04-02 16:55:15 +0000
commit7a589cb97a18ad905339a20824fe5b0bfc90cc9f (patch)
treef65567a89f46899885dc995324e10368825902d2 /cpp/src/Ice/EventHandler.h
parentinitial clean-up (diff)
downloadice-7a589cb97a18ad905339a20824fe5b0bfc90cc9f.tar.bz2
ice-7a589cb97a18ad905339a20824fe5b0bfc90cc9f.tar.xz
ice-7a589cb97a18ad905339a20824fe5b0bfc90cc9f.zip
finished() fixes
Diffstat (limited to 'cpp/src/Ice/EventHandler.h')
-rw-r--r--cpp/src/Ice/EventHandler.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/EventHandler.h b/cpp/src/Ice/EventHandler.h
index c7bcb44cdd8..4d5434b579c 100644
--- a/cpp/src/Ice/EventHandler.h
+++ b/cpp/src/Ice/EventHandler.h
@@ -54,11 +54,6 @@ public:
virtual void message(BasicStream&) = 0;
//
- // Propagate an exception to the event handler.
- //
- virtual void exception(const ::Ice::LocalException&) = 0;
-
- //
// Will be called if the event handler is finally
// unregistered. (Calling unregister() does not unregister
// immediately.)
@@ -66,6 +61,11 @@ public:
virtual void finished() = 0;
//
+ // Propagate an exception to the event handler.
+ //
+ virtual void exception(const ::Ice::LocalException&) = 0;
+
+ //
// Try to destroy the event handler. Returns false if the event
// handler cannot be destroyed because it is in use, or true
// otherwise.