com.zeroc.IceMX.RemoteMetrics 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.8
//
//
//
// Generated from file `Metrics.ice'
//
// Warning: do not edit this file.
//
//
//
package com.zeroc.IceMX;
/**
* Provides information on invocations that are specifically sent over
* Ice connections. Remote metrics are embedded within {@link InvocationMetrics}.
**/
public class RemoteMetrics extends ChildInvocationMetrics
{
public RemoteMetrics()
{
super();
}
public RemoteMetrics(String id, long total, int current, long totalLifetime, int failures, long size, long replySize)
{
super(id, total, current, totalLifetime, failures, size, replySize);
}
public RemoteMetrics clone()
{
return (RemoteMetrics)super.clone();
}
public static String ice_staticId()
{
return "::IceMX::RemoteMetrics";
}
@Override
public String ice_id()
{
return ice_staticId();
}
/** @hidden */
public static final long serialVersionUID = -3440137389105779949L;
/** @hidden */
@Override
protected void _iceWriteImpl(com.zeroc.Ice.OutputStream ostr_)
{
ostr_.startSlice(ice_staticId(), -1, false);
ostr_.endSlice();
super._iceWriteImpl(ostr_);
}
/** @hidden */
@Override
protected void _iceReadImpl(com.zeroc.Ice.InputStream istr_)
{
istr_.startSlice();
istr_.endSlice();
super._iceReadImpl(istr_);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy