summaryrefslogtreecommitdiff
path: root/java/src/IceInternal/ConnectionObserverI.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/IceInternal/ConnectionObserverI.java')
-rw-r--r--java/src/IceInternal/ConnectionObserverI.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/java/src/IceInternal/ConnectionObserverI.java b/java/src/IceInternal/ConnectionObserverI.java
new file mode 100644
index 00000000000..4cb0edad9aa
--- /dev/null
+++ b/java/src/IceInternal/ConnectionObserverI.java
@@ -0,0 +1,49 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2012 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+package IceInternal;
+
+public class ConnectionObserverI extends IceMX.Observer<IceMX.ConnectionMetrics>
+ implements Ice.Instrumentation.ConnectionObserver
+{
+ public void
+ sentBytes(final int num)
+ {
+ _sentBytes = num;
+ forEach(_sentBytesUpdate);
+ }
+
+ public void
+ receivedBytes(int num)
+ {
+ _receivedBytes = num;
+ forEach(_receivedBytesUpdate);
+ }
+
+ private MetricsUpdate<IceMX.ConnectionMetrics> _sentBytesUpdate = new MetricsUpdate<IceMX.ConnectionMetrics>()
+ {
+ public void
+ update(IceMX.ConnectionMetrics v)
+ {
+ v.sentBytes += _sentBytes;
+ }
+ };
+
+ private MetricsUpdate<IceMX.ConnectionMetrics> _receivedBytesUpdate = new MetricsUpdate<IceMX.ConnectionMetrics>()
+ {
+ public void
+ update(IceMX.ConnectionMetrics v)
+ {
+ v.receivedBytes += _receivedBytes;
+ }
+ };
+
+ private int _sentBytes;
+ private int _receivedBytes;
+} \ No newline at end of file