summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h b/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h
index ac5661e674f..362cd39b425 100644
--- a/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h
+++ b/TAO/orbsvcs/orbsvcs/Notify/Sequence/SequencePushConsumer.h
@@ -48,13 +48,12 @@ public:
virtual ~TAO_Notify_SequencePushConsumer ();
/// Init the Consumer
- void init (CosNotifyComm::SequencePushConsumer_ptr push_consumer ACE_ENV_ARG_DECL);
+ void init (CosNotifyComm::SequencePushConsumer_ptr push_consumer);
/// Add request to a queue if necessary.
/// for Sequence it's always necessary.
virtual bool enqueue_if_necessary(
- TAO_Notify_Method_Request_Event * request
- ACE_ENV_ARG_DECL);
+ TAO_Notify_Method_Request_Event * request);
virtual bool dispatch_from_queue (
Request_Queue & requests,
@@ -62,21 +61,20 @@ public:
/// Push <event> to this consumer.
- virtual void push (const CORBA::Any& event ACE_ENV_ARG_DECL);
+ virtual void push (const CORBA::Any& event);
// Push event.
- virtual void push (const CosNotification::StructuredEvent & event ACE_ENV_ARG_DECL);
+ virtual void push (const CosNotification::StructuredEvent & event);
/// Push a batch of events to this consumer.
- virtual void push (const CosNotification::EventBatch& event ACE_ENV_ARG_DECL);
+ virtual void push (const CosNotification::EventBatch& event);
/// Retrieve the ior of this peer
virtual ACE_CString get_ior (void) const;
/// on reconnect we need to move events from the old consumer
/// to the new one
- virtual void reconnect_from_consumer (TAO_Notify_Consumer* old_consumer
- ACE_ENV_ARG_DECL);
+ virtual void reconnect_from_consumer (TAO_Notify_Consumer* old_consumer);
protected: