Documentation for Ice 3.4. The latest release is Ice 3.7. Refer to the space directory for other releases.

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »


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.

Operations

void 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 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.


  • No labels