IceMX.ChildInvocationMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice-compat Show documentation
Show all versions of ice-compat Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
The newest version!
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.10
//
//
//
// Generated from file `Metrics.ice'
//
// Warning: do not edit this file.
//
//
//
package IceMX;
/**
* Provides information on child invocations. A child invocation is
* either remote (sent over an Ice connection) or collocated. An
* invocation can have multiple child invocation if it is
* retried. Child invocation metrics are embedded within
* {@link InvocationMetrics}.
*
**/
public class ChildInvocationMetrics extends Metrics
{
public ChildInvocationMetrics()
{
super();
this.size = 0L;
this.replySize = 0L;
}
public ChildInvocationMetrics(String id, long total, int current, long totalLifetime, int failures, long size, long replySize)
{
super(id, total, current, totalLifetime, failures);
this.size = size;
this.replySize = replySize;
}
private static class _F implements Ice.ValueFactory
{
public Ice.Object create(String type)
{
assert(type.equals(ice_staticId()));
return new ChildInvocationMetrics();
}
}
private static Ice.ValueFactory _factory = new _F();
public static Ice.ValueFactory
ice_factory()
{
return _factory;
}
private static final String[] _ids =
{
"::Ice::Object",
"::IceMX::ChildInvocationMetrics",
"::IceMX::Metrics"
};
public boolean ice_isA(String s)
{
return java.util.Arrays.binarySearch(_ids, s) >= 0;
}
public boolean ice_isA(String s, Ice.Current current)
{
return java.util.Arrays.binarySearch(_ids, s) >= 0;
}
public String[] ice_ids()
{
return _ids;
}
public String[] ice_ids(Ice.Current current)
{
return _ids;
}
public String ice_id()
{
return _ids[1];
}
public String ice_id(Ice.Current current)
{
return _ids[1];
}
public static String ice_staticId()
{
return _ids[1];
}
protected void _iceWriteImpl(Ice.OutputStream ostr_)
{
ostr_.startSlice(ice_staticId(), -1, false);
ostr_.writeLong(size);
ostr_.writeLong(replySize);
ostr_.endSlice();
super._iceWriteImpl(ostr_);
}
protected void _iceReadImpl(Ice.InputStream istr_)
{
istr_.startSlice();
size = istr_.readLong();
replySize = istr_.readLong();
istr_.endSlice();
super._iceReadImpl(istr_);
}
/**
* The size of the invocation. This corresponds to the size of the
* marshalled input parameters.
*
**/
public long size;
/**
* The size of the invocation reply. This corresponds to the size
* of the marshalled output and return parameters.
*
**/
public long replySize;
public ChildInvocationMetrics
clone()
{
return (ChildInvocationMetrics)super.clone();
}
public static final long serialVersionUID = 2273731628554051433L;
}