summaryrefslogtreecommitdiff
path: root/TAO/tests/AMI_Buffering/AMI_Buffering_Admin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/AMI_Buffering/AMI_Buffering_Admin.cpp')
-rw-r--r--TAO/tests/AMI_Buffering/AMI_Buffering_Admin.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/TAO/tests/AMI_Buffering/AMI_Buffering_Admin.cpp b/TAO/tests/AMI_Buffering/AMI_Buffering_Admin.cpp
new file mode 100644
index 00000000000..241e3d0b325
--- /dev/null
+++ b/TAO/tests/AMI_Buffering/AMI_Buffering_Admin.cpp
@@ -0,0 +1,49 @@
+//
+// $Id$
+//
+#include "AMI_Buffering_Admin.h"
+
+ACE_RCSID(AMI_Buffering, AMI_Buffering_Admin, "$Id$")
+
+AMI_Buffering_Admin::AMI_Buffering_Admin (CORBA::ORB_ptr orb)
+ : orb_ (CORBA::ORB::_duplicate (orb))
+ , request_count_ (0)
+ , bytes_received_count_ (0)
+{
+}
+
+CORBA::ULong
+AMI_Buffering_Admin::request_count (CORBA::Environment &)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ return this->request_count_;
+}
+
+CORBA::ULong
+AMI_Buffering_Admin::bytes_received_count (CORBA::Environment &)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ return this->bytes_received_count_;
+}
+
+void
+AMI_Buffering_Admin::request_received (CORBA::ULong payload_length,
+ CORBA::Environment &)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ this->request_count_++;
+ this->bytes_received_count_ += payload_length;
+}
+
+void
+AMI_Buffering_Admin::flush (CORBA::Environment &)
+ ACE_THROW_SPEC (())
+{
+}
+
+void
+AMI_Buffering_Admin::shutdown (CORBA::Environment &ACE_TRY_ENV)
+ ACE_THROW_SPEC ((CORBA::SystemException))
+{
+ this->orb_->shutdown (0, ACE_TRY_ENV);
+}