com.zeroc.IceMX.DispatchMetrics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice Show documentation
Show all versions of ice Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.9
//
//
//
// Generated from file `Metrics.ice'
//
// Warning: do not edit this file.
//
//
//
package com.zeroc.IceMX;
/**
* Provides information on servant dispatch.
**/
public class DispatchMetrics extends Metrics
{
public DispatchMetrics()
{
super();
this.userException = 0;
this.size = 0L;
this.replySize = 0L;
}
public DispatchMetrics(String id, long total, int current, long totalLifetime, int failures, int userException, long size, long replySize)
{
super(id, total, current, totalLifetime, failures);
this.userException = userException;
this.size = size;
this.replySize = replySize;
}
/**
* The number of dispatch that failed with a user exception.
**/
public int userException;
/**
* The size of the dispatch. This corresponds to the size of the
* marshalled input parameters.
**/
public long size;
/**
* The size of the dispatch reply. This corresponds to the size of
* the marshalled output and return parameters.
**/
public long replySize;
public DispatchMetrics clone()
{
return (DispatchMetrics)super.clone();
}
public static String ice_staticId()
{
return "::IceMX::DispatchMetrics";
}
@Override
public String ice_id()
{
return ice_staticId();
}
/** @hidden */
public static final long serialVersionUID = 8536118955902550290L;
/** @hidden */
@Override
protected void _iceWriteImpl(com.zeroc.Ice.OutputStream ostr_)
{
ostr_.startSlice(ice_staticId(), -1, false);
ostr_.writeInt(userException);
ostr_.writeLong(size);
ostr_.writeLong(replySize);
ostr_.endSlice();
super._iceWriteImpl(ostr_);
}
/** @hidden */
@Override
protected void _iceReadImpl(com.zeroc.Ice.InputStream istr_)
{
istr_.startSlice();
userException = istr_.readInt();
size = istr_.readLong();
replySize = istr_.readLong();
istr_.endSlice();
super._iceReadImpl(istr_);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy