Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3
Znav
nextIce-StringConversionException
prevIce-SocketException
Section


Ice::Stats

Overview

local interface Stats

An interface Ice uses to report statistics, such as how much data is sent or received. Applications must provide their own Ice::Stats by implementing this interface and installing it in a communicator.

Used By

Operation Index

bytesSent — Callback to report that data has been sent.
bytesReceived — Callback to report that data has been received.

Ztop

Operations

void
Anchor
bytesSent
bytesSent
bytesSent(string protocol, int num)

Callback to report that data has been sent.

Parameters

protocol — The protocol over which data has been sent (for example "tcp", "udp", or "ssl").
num — How many bytes have been sent.

void
Anchor
bytesReceived
bytesReceived
bytesReceived(string protocol, int num)

Callback to report that data has been received.

Parameters

protocol — The protocol over which data has been received (for example "tcp", "udp", or "ssl").
num — How many bytes have been received.

Ztop

Znav
nextIce-StringConversionException
prevIce-SocketException
Section