summaryrefslogtreecommitdiff
path: root/ACE/TAO/orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.h')
-rw-r--r--ACE/TAO/orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/ACE/TAO/orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.h b/ACE/TAO/orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.h
new file mode 100644
index 00000000000..afc3eff9095
--- /dev/null
+++ b/ACE/TAO/orbsvcs/tests/Notify/Blocking/Notify_Structured_Push_Consumer.h
@@ -0,0 +1,47 @@
+/* -*- C++ -*- */
+// $Id$
+// ==========================================================================
+//
+// = LIBRARY
+// TAO/orbsvcs/tests/Notify/Discarding
+//
+// = FILENAME
+// Notify_Structured_Push_Consumer.h
+//
+// = DESCRIPTION
+// A structured push consumer implementation.
+//
+// = AUTHOR
+// Chad Elliott <elliott_c@ociweb.com>
+//
+// ==========================================================================
+#ifndef TAO_NOTIFY_STRUCTURED_PUSH_CONSUMER_H
+#define TAO_NOTIFY_STRUCTURED_PUSH_CONSUMER_H
+
+#include "Notify_StructuredPushConsumer.h"
+#include "orbsvcs/TimeBaseC.h"
+
+class Notify_Test_Client;
+
+class Notify_Structured_Push_Consumer: public TAO_Notify_Tests_StructuredPushConsumer
+{
+public:
+ Notify_Structured_Push_Consumer (
+ const char* name,
+ TimeBase::TimeT blocking,
+ unsigned int expected,
+ Notify_Test_Client& client);
+
+ void _connect (CosNotifyChannelAdmin::ConsumerAdmin_ptr consumer_admin);
+
+protected:
+ void push_structured_event (const CosNotification::StructuredEvent&);
+
+ ACE_CString name_;
+ TimeBase::TimeT blocking_timeout_;
+ unsigned int expected_;
+ unsigned int count_;
+ Notify_Test_Client& client_;
+};
+
+#endif /* TAO_NOTIFY_STRUCTURED_PUSH_CONSUMER_H */