summaryrefslogtreecommitdiff
path: root/cpp/src/IceStorm/Subscriber.h
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2006-11-20 09:53:45 +0000
committerMatthew Newhook <matthew@zeroc.com>2006-11-20 09:53:45 +0000
commit2ee5941662889fca72b75379844d04ba61865081 (patch)
tree386ae9824dbde1846a2725149741e0f442db569a /cpp/src/IceStorm/Subscriber.h
parentAdded shutdown state. (diff)
downloadice-2ee5941662889fca72b75379844d04ba61865081.tar.bz2
ice-2ee5941662889fca72b75379844d04ba61865081.tar.xz
ice-2ee5941662889fca72b75379844d04ba61865081.zip
Removed Shutdown state.
Diffstat (limited to 'cpp/src/IceStorm/Subscriber.h')
-rw-r--r--cpp/src/IceStorm/Subscriber.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/cpp/src/IceStorm/Subscriber.h b/cpp/src/IceStorm/Subscriber.h
index ba0502b43dc..580bef03cbb 100644
--- a/cpp/src/IceStorm/Subscriber.h
+++ b/cpp/src/IceStorm/Subscriber.h
@@ -47,7 +47,6 @@ public:
//
virtual bool flush() = 0;
virtual void destroy();
- void shutdown();
//
// These methods must only be called by the SubscriberPool they
@@ -75,8 +74,7 @@ protected:
SubscriberStateOnline,
SubscriberStateFlushPending,
SubscriberStateOffline,
- SubscriberStateError,
- SubscriberStateShutdown
+ SubscriberStateError
};
SubscriberState _state; // The subscriber state.
EventSeq _events; // The queue of events to send.