Interface ConnectionObserver

All Superinterfaces:
Observer

public interface ConnectionObserver extends Observer
The connection observer interface to instrument Ice connections.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    receivedBytes(int num)
    Notification of received bytes over the connection.
    void
    sentBytes(int num)
    Notification of sent bytes over the connection.

    Methods inherited from interface com.zeroc.Ice.Instrumentation.Observer

    attach, detach, failed
  • Method Details

    • sentBytes

      void sentBytes(int num)
      Notification of sent bytes over the connection.
      Parameters:
      num - The number of bytes sent.
    • receivedBytes

      void receivedBytes(int num)
      Notification of received bytes over the connection.
      Parameters:
      num - The number of bytes received.