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

Ice.OpaqueEndpointInfo Maven / Gradle / Ivy

Go to download

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 `Endpoint.ice'
//
// Warning: do not edit this file.
//
// 
//

package 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();
    }

    public static final long serialVersionUID = 2439699764526521524L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy