All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zeroc.IceMX.RemoteMetrics Maven / Gradle / Ivy

//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.2
//
// 
//
// 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