Interface EndPoint
-
- All Superinterfaces:
java.lang.AutoCloseable
,java.io.Closeable
- All Known Implementing Classes:
AbstractEndPoint
,ByteArrayEndPoint
,ChannelEndPoint
,LocalConnector.LocalEndPoint
,NetworkTrafficSelectChannelEndPoint
,NetworkTrafficSocketChannelEndPoint
,ProxyConnectionFactory.ProxyEndPoint
,SelectChannelEndPoint
,SocketChannelEndPoint
,SslConnection.DecryptedEndPoint
@Deprecated(since="2021-05-27") public interface EndPoint extends java.io.Closeable
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.EndPoint is the abstraction for an I/O channel that transports bytes.
Asynchronous Methods
The asynchronous scheduling methods of
EndPoint
has been influenced by NIO.2 Futures and Completion handlers, but does not use those actual interfaces because they have some inefficiencies.This class will frequently be used in conjunction with some of the utility implementations of
Callback
, such asFutureCallback
andIteratingCallback
.Reads
A
FutureCallback
can be used to block until an endpoint is ready to fill bytes - the notification will be emitted by the NIO subsystem:FutureCallback callback = new FutureCallback(); endPoint.fillInterested(callback); // Blocks until read to fill bytes. callback.get(); // Now bytes can be filled in a ByteBuffer. int filled = endPoint.fill(byteBuffer);
Asynchronous Reads
A
Callback
can be used to read asynchronously in its own dispatched thread:endPoint.fillInterested(new Callback() { public void onSucceeded() { executor.execute(() -> { // Fill bytes in a different thread. int filled = endPoint.fill(byteBuffer); }); } public void onFailed(Throwable failure) { endPoint.close(); } });
Blocking Writes
The write contract is that the callback is completed when all the bytes have been written or there is a failure. Blocking writes look like this:
FutureCallback callback = new FutureCallback(); endpoint.write(callback, headerBuffer, contentBuffer); // Blocks until the write succeeds or fails. future.get();
Note also that multiple buffers may be passed in
write(Callback, ByteBuffer...)
so that gather writes can be performed for efficiency.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
close()
Deprecated.Close any backing stream associated with the endpointint
fill(java.nio.ByteBuffer buffer)
Deprecated.Fill the passed buffer with data from this endpoint.void
fillInterested(Callback callback)
Deprecated.Requests callback methods to be invoked when a call tofill(ByteBuffer)
would return data or EOF.boolean
flush(java.nio.ByteBuffer... buffer)
Deprecated.Flush data from the passed header/buffer to this endpoint.Connection
getConnection()
Deprecated.long
getCreatedTimeStamp()
Deprecated.long
getIdleTimeout()
Deprecated.Get the max idle time in ms.java.net.InetSocketAddress
getLocalAddress()
Deprecated.java.net.InetSocketAddress
getRemoteAddress()
Deprecated.java.lang.Object
getTransport()
Deprecated.boolean
isFillInterested()
Deprecated.boolean
isInputShutdown()
Deprecated.Test if the input is shutdown.boolean
isOpen()
Deprecated.boolean
isOptimizedForDirectBuffers()
Deprecated.Is the endpoint optimized for DirectBuffer usageboolean
isOutputShutdown()
Deprecated.Test if output is shutdown.void
onClose()
Deprecated.Callback method invoked when this EndPoint is close.void
onOpen()
Deprecated.Callback method invoked when this EndPoint is opened.void
setConnection(Connection connection)
Deprecated.void
setIdleTimeout(long idleTimeout)
Deprecated.Set the idle timeout.void
shutdownOutput()
Deprecated.Shutdown the output.boolean
tryFillInterested(Callback callback)
Deprecated.Requests callback methods to be invoked when a call tofill(ByteBuffer)
would return data or EOF.void
upgrade(Connection newConnection)
Deprecated.Upgrades this EndPoint from the current connection to the given new connection.void
write(Callback callback, java.nio.ByteBuffer... buffers)
Deprecated.Writes the given buffers viaflush(ByteBuffer...)
and invokes callback methods when either all the data has been flushed or an error occurs.
-
-
-
Method Detail
-
getLocalAddress
java.net.InetSocketAddress getLocalAddress()
Deprecated.- Returns:
- The local Inet address to which this
EndPoint
is bound, ornull
if thisEndPoint
does not represent a network connection.
-
getRemoteAddress
java.net.InetSocketAddress getRemoteAddress()
Deprecated.- Returns:
- The remote Inet address to which this
EndPoint
is bound, ornull
if thisEndPoint
does not represent a network connection.
-
isOpen
boolean isOpen()
Deprecated.- Returns:
- whether this EndPoint is open
-
getCreatedTimeStamp
long getCreatedTimeStamp()
Deprecated.- Returns:
- the epoch time in milliseconds when this EndPoint was created
-
shutdownOutput
void shutdownOutput()
Deprecated.Shutdown the output.This call indicates that no more data will be sent on this endpoint that that the remote end should read an EOF once all previously sent data has been consumed. Shutdown may be done either at the TCP/IP level, as a protocol exchange (Eg TLS close handshake) or both.
If the endpoint has
isInputShutdown()
true, then this call has the same effect asclose()
.
-
isOutputShutdown
boolean isOutputShutdown()
Deprecated.Test if output is shutdown. The output is shutdown by a call toshutdownOutput()
orclose()
.- Returns:
- true if the output is shutdown or the endpoint is closed.
-
isInputShutdown
boolean isInputShutdown()
Deprecated.Test if the input is shutdown. The input is shutdown if an EOF has been read while doing afill(ByteBuffer)
. Once the input is shutdown, all calls tofill(ByteBuffer)
will return -1, until such time as the end point is close, when they will returnEofException
.- Returns:
- True if the input is shutdown or the endpoint is closed.
-
close
void close()
Deprecated.Close any backing stream associated with the endpoint- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
-
fill
int fill(java.nio.ByteBuffer buffer) throws java.io.IOException
Deprecated.Fill the passed buffer with data from this endpoint. The bytes are appended to any data already in the buffer by writing from the buffers limit up to it's capacity. The limit is updated to include the filled bytes.- Parameters:
buffer
- The buffer to fill. The position and limit are modified during the fill. After the operation, the position is unchanged and the limit is increased to reflect the new data filled.- Returns:
- an
int
value indicating the number of bytes filled or -1 if EOF is read or the input is shutdown. - Throws:
java.io.IOException
- if the endpoint is closed.
-
flush
boolean flush(java.nio.ByteBuffer... buffer) throws java.io.IOException
Deprecated.Flush data from the passed header/buffer to this endpoint. As many bytes as can be consumed are taken from the header/buffer position up until the buffer limit. The header/buffers position is updated to indicate how many bytes have been consumed.- Parameters:
buffer
- the buffers to flush- Returns:
- True IFF all the buffers have been consumed and the endpoint has flushed the data to its destination (ie is not buffering any data).
- Throws:
java.io.IOException
- If the endpoint is closed or output is shutdown.
-
getTransport
java.lang.Object getTransport()
Deprecated.- Returns:
- The underlying transport object (socket, channel, etc.)
-
getIdleTimeout
long getIdleTimeout()
Deprecated.Get the max idle time in ms.The max idle time is the time the endpoint can be idle before extraordinary handling takes place.
- Returns:
- the max idle time in ms or if ms <= 0 implies an infinite timeout
-
setIdleTimeout
void setIdleTimeout(long idleTimeout)
Deprecated.Set the idle timeout.- Parameters:
idleTimeout
- the idle timeout in MS. Timeout <= 0 implies an infinite timeout
-
fillInterested
void fillInterested(Callback callback) throws java.nio.channels.ReadPendingException
Deprecated.Requests callback methods to be invoked when a call to
fill(ByteBuffer)
would return data or EOF.- Parameters:
callback
- the callback to call when an error occurs or we are readable. The callback may implement theInvocable
interface to self declare its blocking status. Non-blocking callbacks may be called more efficiently without dispatch delays.- Throws:
java.nio.channels.ReadPendingException
- if another read operation is concurrent.
-
tryFillInterested
boolean tryFillInterested(Callback callback)
Deprecated.Requests callback methods to be invoked when a call to
fill(ByteBuffer)
would return data or EOF.- Parameters:
callback
- the callback to call when an error occurs or we are readable. The callback may implement theInvocable
interface to self declare its blocking status. Non-blocking callbacks may be called more efficiently without dispatch delays.- Returns:
- true if set
-
isFillInterested
boolean isFillInterested()
Deprecated.- Returns:
- whether
fillInterested(Callback)
has been called, butfill(ByteBuffer)
has not yet been called
-
write
void write(Callback callback, java.nio.ByteBuffer... buffers) throws java.nio.channels.WritePendingException
Deprecated.Writes the given buffers via
flush(ByteBuffer...)
and invokes callback methods when either all the data has been flushed or an error occurs.- Parameters:
callback
- the callback to call when an error occurs or the write completed. The callback may implement theInvocable
interface to self declare its blocking status. Non-blocking callbacks may be called more efficiently without dispatch delays.buffers
- one or moreByteBuffer
s that will be flushed.- Throws:
java.nio.channels.WritePendingException
- if another write operation is concurrent.
-
getConnection
Connection getConnection()
Deprecated.- Returns:
- the
Connection
associated with this EndPoint - See Also:
setConnection(Connection)
-
setConnection
void setConnection(Connection connection)
Deprecated.- Parameters:
connection
- theConnection
associated with this EndPoint- See Also:
getConnection()
,upgrade(Connection)
-
onOpen
void onOpen()
Deprecated.Callback method invoked when this EndPoint is opened.
- See Also:
onClose()
-
onClose
void onClose()
Deprecated.Callback method invoked when this EndPoint is close.
- See Also:
onOpen()
-
isOptimizedForDirectBuffers
boolean isOptimizedForDirectBuffers()
Deprecated.Is the endpoint optimized for DirectBuffer usage- Returns:
- True if direct buffers can be used optimally.
-
upgrade
void upgrade(Connection newConnection)
Deprecated.Upgrades this EndPoint from the current connection to the given new connection.
Closes the current connection, links this EndPoint to the new connection and then opens the new connection.
If the current connection is an instance of
Connection.UpgradeFrom
then a buffer of unconsumed bytes is requested. If the buffer of unconsumed bytes is non-null and non-empty, then the new connection is tested: if it is an instance ofConnection.UpgradeTo
, then the unconsumed buffer is passed to the new connection; otherwise, an exception is thrown since there are unconsumed bytes that cannot be consumed by the new connection.- Parameters:
newConnection
- the connection to upgrade to
-
-