com.zeroc.Ice.OpaqueEndpointInfo 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 `Endpoint.ice'
//
// Warning: do not edit this file.
//
//
//
package com.zeroc.Ice;
/**
* Provides access to the details of an opaque endpoint.
*
* @see Endpoint
**/
public abstract class OpaqueEndpointInfo extends EndpointInfo
{
public OpaqueEndpointInfo()
{
super();
this.rawEncoding = new EncodingVersion();
}
public OpaqueEndpointInfo(EndpointInfo underlying, int timeout, boolean compress, EncodingVersion rawEncoding, byte[] rawBytes)
{
super(underlying, timeout, compress);
this.rawEncoding = rawEncoding;
this.rawBytes = rawBytes;
}
/**
* The encoding version of the opaque endpoint (to decode or
* encode the rawBytes).
**/
public EncodingVersion rawEncoding;
/**
* The raw encoding of the opaque endpoint.
**/
public byte[] rawBytes;
public OpaqueEndpointInfo clone()
{
return (OpaqueEndpointInfo)super.clone();
}
/** @hidden */
public static final long serialVersionUID = 2439699764526521524L;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy