Class AbstractEndPoint
- All Implemented Interfaces:
Closeable
,AutoCloseable
,EndPoint
- Direct Known Subclasses:
ByteArrayEndPoint
,QuicStreamEndPoint
,SelectableChannelEndPoint
,SslConnection.DecryptedEndPoint
Partial implementation of EndPoint that uses FillInterest
and WriteFlusher
.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.EndPoint
EndPoint.Wrapper
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionfinal void
close()
Close any backing stream associated with the endpointfinal void
Close any backing stream associated with the endpoint, passing a causeprotected void
doClose()
protected void
protected void
void
fillInterested
(Callback callback) Requests callback methods to be invoked when a call toEndPoint.fill(ByteBuffer)
would return data or EOF.long
boolean
boolean
Test if the input is shutdown.boolean
isOpen()
This abstract method should be called to check if idle timeouts should still be checked.boolean
Test if output is shutdown.protected abstract void
final void
onClose()
void
Callback method invoked when thisEndPoint
is closed.protected void
onIdleExpired
(TimeoutException timeout) This abstract method is called when the idle timeout has expired.protected abstract void
void
onOpen()
Callback method invoked when this EndPoint is opened.protected void
reset()
void
setConnection
(Connection connection) protected final void
final void
Shutdown the output.toString()
boolean
tryFillInterested
(Callback callback) Requests callback methods to be invoked when a call toEndPoint.fill(ByteBuffer)
would return data or EOF.void
upgrade
(Connection newConnection) Upgrades this EndPoint from the current connection to the given new connection.void
write
(Callback callback, ByteBuffer... buffers) Writes the given buffers viaEndPoint.flush(ByteBuffer...)
and invokes callback methods when either all the data has been flushed or an error occurs.Methods inherited from class org.eclipse.jetty.io.IdleTimeout
checkIdleTimeout, getIdleFor, getIdleTimeout, getScheduler, notIdle, setIdleTimeout
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.eclipse.jetty.io.EndPoint
fill, flush, getIdleTimeout, getTransport, setIdleTimeout
-
Constructor Details
-
AbstractEndPoint
-
-
Method Details
-
getLocalAddress
- Specified by:
getLocalAddress
in interfaceEndPoint
- Returns:
- The local InetSocketAddress to which this
EndPoint
is bound, ornull
if thisEndPoint
is not bound to a Socket address.
-
getLocalSocketAddress
- Specified by:
getLocalSocketAddress
in interfaceEndPoint
- Returns:
- the local SocketAddress to which this
EndPoint
is bound ornull
if thisEndPoint
is not bound to a Socket address.
-
getRemoteAddress
- Specified by:
getRemoteAddress
in interfaceEndPoint
- Returns:
- The remote InetSocketAddress to which this
EndPoint
is connected, ornull
if thisEndPoint
is not connected to a Socket address.
-
getRemoteSocketAddress
- Specified by:
getRemoteSocketAddress
in interfaceEndPoint
- Returns:
- The remote SocketAddress to which this
EndPoint
is connected, ornull
if thisEndPoint
is not connected to a Socket address.
-
shutdownInput
protected final void shutdownInput() -
shutdownOutput
public final void shutdownOutput()Description copied from interface:EndPoint
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
EndPoint.isInputShutdown()
true, then this call has the same effect asEndPoint.close()
.- Specified by:
shutdownOutput
in interfaceEndPoint
-
close
public final void close()Description copied from interface:EndPoint
Close any backing stream associated with the endpoint -
close
Description copied from interface:EndPoint
Close any backing stream associated with the endpoint, passing a cause -
doShutdownInput
protected void doShutdownInput() -
doShutdownOutput
protected void doShutdownOutput() -
doClose
protected void doClose() -
isOutputShutdown
public boolean isOutputShutdown()Description copied from interface:EndPoint
Test if output is shutdown. The output is shutdown by a call toEndPoint.shutdownOutput()
orEndPoint.close()
.- Specified by:
isOutputShutdown
in interfaceEndPoint
- Returns:
- true if the output is shutdown or the endpoint is closed.
-
isInputShutdown
public boolean isInputShutdown()Description copied from interface:EndPoint
Test if the input is shutdown. The input is shutdown if an EOF has been read while doing aEndPoint.fill(ByteBuffer)
. Once the input is shutdown, all calls toEndPoint.fill(ByteBuffer)
will return -1, until such time as the end point is close, when they will returnEofException
.- Specified by:
isInputShutdown
in interfaceEndPoint
- Returns:
- True if the input is shutdown or the endpoint is closed.
-
isOpen
public boolean isOpen()Description copied from class:IdleTimeout
This abstract method should be called to check if idle timeouts should still be checked.- Specified by:
isOpen
in interfaceEndPoint
- Specified by:
isOpen
in classIdleTimeout
- Returns:
- True if the entity monitored should still be checked for idle timeouts
-
getCreatedTimeStamp
public long getCreatedTimeStamp()- Specified by:
getCreatedTimeStamp
in interfaceEndPoint
- Returns:
- the epoch time in milliseconds when this EndPoint was created
-
getConnection
- Specified by:
getConnection
in interfaceEndPoint
- Returns:
- the
Connection
associated with this EndPoint - See Also:
-
setConnection
- Specified by:
setConnection
in interfaceEndPoint
- Parameters:
connection
- theConnection
associated with this EndPoint- See Also:
-
reset
protected void reset() -
onOpen
public void onOpen()Description copied from interface:EndPoint
Callback method invoked when this EndPoint is opened.
- Specified by:
onOpen
in interfaceEndPoint
- Overrides:
onOpen
in classIdleTimeout
- See Also:
-
onClose
public final void onClose()- Overrides:
onClose
in classIdleTimeout
-
onClose
Description copied from interface:EndPoint
Callback method invoked when this
EndPoint
is closed. -
fillInterested
Description copied from interface:EndPoint
Requests callback methods to be invoked when a call to
EndPoint.fill(ByteBuffer)
would return data or EOF.- Specified by:
fillInterested
in interfaceEndPoint
- 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.
-
tryFillInterested
Description copied from interface:EndPoint
Requests callback methods to be invoked when a call to
EndPoint.fill(ByteBuffer)
would return data or EOF.- Specified by:
tryFillInterested
in interfaceEndPoint
- 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
public boolean isFillInterested()- Specified by:
isFillInterested
in interfaceEndPoint
- Returns:
- whether
EndPoint.fillInterested(Callback)
has been called, butEndPoint.fill(ByteBuffer)
has not yet been called
-
write
Description copied from interface:EndPoint
Writes the given buffers via
EndPoint.flush(ByteBuffer...)
and invokes callback methods when either all the data has been flushed or an error occurs.- Specified by:
write
in interfaceEndPoint
- 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:
WritePendingException
- if another write operation is concurrent.
-
onIncompleteFlush
protected abstract void onIncompleteFlush() -
needsFillInterest
- Throws:
IOException
-
getFillInterest
-
getWriteFlusher
-
onIdleExpired
Description copied from class:IdleTimeout
This abstract method is called when the idle timeout has expired.- Specified by:
onIdleExpired
in classIdleTimeout
- Parameters:
timeout
- a TimeoutException
-
upgrade
Description copied from interface:EndPoint
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. -
toString
-
toEndPointString
-
toConnectionString
-