Ice.TCPConnectionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice-compat Show documentation
Show all versions of ice-compat Show documentation
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 `Connection.ice'
//
// Warning: do not edit this file.
//
//
//
package Ice;
/**
* Provides access to the connection details of a TCP connection
*
**/
public class TCPConnectionInfo extends IPConnectionInfo
{
public TCPConnectionInfo()
{
super();
this.rcvSize = 0;
this.sndSize = 0;
}
public TCPConnectionInfo(ConnectionInfo underlying, boolean incoming, String adapterName, String connectionId, String localAddress, int localPort, String remoteAddress, int remotePort, int rcvSize, int sndSize)
{
super(underlying, incoming, adapterName, connectionId, localAddress, localPort, remoteAddress, remotePort);
this.rcvSize = rcvSize;
this.sndSize = sndSize;
}
/**
* The connection buffer receive size.
*
**/
public int rcvSize;
/**
* The connection buffer send size.
*
**/
public int sndSize;
public TCPConnectionInfo
clone()
{
return (TCPConnectionInfo)super.clone();
}
public static final long serialVersionUID = 991962771996026865L;
}