public class TcpIpConnection extends Object implements Connection
Connection
.
A TcpIpConnection
is not responsible for reading or writing data to the socket; that is task of
the Channel
.
Networking
Constructor and Description |
---|
TcpIpConnection(TcpIpEndpointManager endpointManager,
ConnectionLifecycleListener lifecycleListener,
int connectionId,
Channel channel) |
Modifier and Type | Method and Description |
---|---|
void |
close(String reason,
Throwable cause)
Closes this connection.
|
boolean |
equals(Object o) |
Channel |
getChannel() |
Throwable |
getCloseCause()
Gets the cause this Connection was closed.
|
String |
getCloseReason()
Gets the reason this Connection was closed.
|
int |
getConnectionId() |
Address |
getEndPoint()
Gets the
Address of the other side of this Connection. |
TcpIpEndpointManager |
getEndpointManager() |
InetAddress |
getInetAddress()
Returns remote address of this Connection.
|
int |
getPort()
The remote port.
|
InetSocketAddress |
getRemoteSocketAddress()
Returns the address of the endpoint this Connection is connected to, or
null if it is unconnected. |
ConnectionType |
getType()
Returns the
ConnectionType of this Connection. |
int |
hashCode() |
boolean |
isAlive()
Checks if the Connection is alive.
|
boolean |
isClient()
Checks if it is a client connection.
|
long |
lastReadTimeMillis()
Returns the clock time in milliseconds of the most recent read using this connection.
|
long |
lastWriteTimeMillis()
Returns the clock time in milliseconds of the most recent write using this connection.
|
boolean |
setBinding() |
void |
setEndPoint(Address endPoint) |
void |
setErrorHandler(TcpIpConnectionErrorHandler errorHandler) |
void |
setType(ConnectionType type)
Sets the type of the connection
|
String |
toString() |
boolean |
write(OutboundFrame frame)
Writes a outbound frame so it can be received by the other side of the connection.
|
public TcpIpConnection(TcpIpEndpointManager endpointManager, ConnectionLifecycleListener lifecycleListener, int connectionId, Channel channel)
public Channel getChannel()
public ConnectionType getType()
Connection
ConnectionType
of this Connection.getType
in interface Connection
null
is returned.public void setType(ConnectionType type)
Connection
setType
in interface Connection
type
- to be setpublic TcpIpEndpointManager getEndpointManager()
getEndpointManager
in interface Connection
public InetAddress getInetAddress()
Connection
getInetAddress
in interface Connection
null
if the connection is not alive.public int getPort()
Connection
todo: rename to getRemotePort? And do we need it because we already have getEndPoint which returns an address which includes port. It is only used in testing
getPort
in interface Connection
public InetSocketAddress getRemoteSocketAddress()
Connection
null
if it is unconnected.getRemoteSocketAddress
in interface Connection
todo: do we really need this method because we have getInetAddress, InetSocketAddress and getEndPoint.
public boolean isAlive()
Connection
isAlive
in interface Connection
public long lastWriteTimeMillis()
Connection
lastWriteTimeMillis
in interface Connection
public long lastReadTimeMillis()
Connection
lastReadTimeMillis
in interface Connection
public Address getEndPoint()
Connection
Address
of the other side of this Connection.
todo: rename to get remoteAddress?
getEndPoint
in interface Connection
public void setEndPoint(Address endPoint)
public void setErrorHandler(TcpIpConnectionErrorHandler errorHandler)
public int getConnectionId()
public boolean isClient()
Connection
isClient
in interface Connection
public boolean write(OutboundFrame frame)
Connection
The frame could be stored in an internal queue before it actually is written, so this call does not need to be a synchronous call.
write
in interface Connection
frame
- the frame to write.public void close(String reason, Throwable cause)
Connection
Pending packets on this connection are discarded
If the Connection is already closed, the call is ignored. So it can safely be called multiple times.
close
in interface Connection
reason
- the reason this connection is going to be closed. Is allowed to be null.cause
- the Throwable responsible for closing this connection. Is allowed to be null.public boolean setBinding()
public Throwable getCloseCause()
Connection
getCloseCause
in interface Connection
()
,
Connection.close(String, Throwable)
public String getCloseReason()
Connection
getCloseReason
in interface Connection
Connection.getCloseCause()
,
Connection.close(String, Throwable)
Copyright © 2019 Hazelcast, Inc.. All Rights Reserved.