Home Previous Up Next Index

Ice::Stats

Overview

[ "deprecate:Stats is deprecated; you should use instead Ice Metrics or Ice Instrumentation" ] local interface Stats

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

This local interface is deprecated as of Ice 3.5.

Stats is deprecated; you should use instead Ice Metrics or Ice Instrumentation

Used By

Communicator::getStats

Operations

void bytesSent(string protocol, int num)

Callback to report that data has been sent.

This operation is deprecated.

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.

This operation is deprecated.

Parameters

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

Home Previous Up Next Index