Class AbstractEndPoint
- java.lang.Object
-
- org.eclipse.jetty.io.IdleTimeout
-
- org.eclipse.jetty.io.AbstractEndPoint
-
- All Implemented Interfaces:
java.io.Closeable
,java.lang.AutoCloseable
,EndPoint
- Direct Known Subclasses:
ByteArrayEndPoint
,ChannelEndPoint
,SslConnection.DecryptedEndPoint
@Deprecated(since="2021-05-27") public abstract class AbstractEndPoint extends IdleTimeout implements EndPoint
Deprecated.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
checkFill()
Deprecated.void
checkFlush()
Deprecated.void
close()
Deprecated.Close any backing stream associated with the endpointvoid
fillInterested(Callback callback)
Deprecated.Requests callback methods to be invoked when a call toEndPoint.fill(ByteBuffer)
would return data or EOF.Connection
getConnection()
Deprecated.long
getCreatedTimeStamp()
Deprecated.FillInterest
getFillInterest()
Deprecated.WriteFlusher
getWriteFlusher()
Deprecated.boolean
isFillInterested()
Deprecated.boolean
isInputShutdown()
Deprecated.Test if the input is shutdown.boolean
isOpen()
Deprecated.This abstract method should be called to check if idle timeouts should still be checked.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
shutdownOutput()
Deprecated.Shutdown the output.java.lang.String
toConnectionString()
Deprecated.java.lang.String
toEndPointString()
Deprecated.java.lang.String
toString()
Deprecated.boolean
tryFillInterested(Callback callback)
Deprecated.Requests callback methods to be invoked when a call toEndPoint.fill(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 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
getIdleFor, getIdleTimeout, getScheduler, notIdle, setIdleTimeout
-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.io.EndPoint
fill, flush, getIdleTimeout, getLocalAddress, getRemoteAddress, getTransport, setIdleTimeout
-
-
-
-
Method Detail
-
shutdownOutput
public final void shutdownOutput()
Deprecated.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()
Deprecated.Description copied from interface:EndPoint
Close any backing stream associated with the endpoint
-
isOutputShutdown
public boolean isOutputShutdown()
Deprecated.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()
Deprecated.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()
Deprecated.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
-
checkFlush
public void checkFlush() throws java.io.IOException
Deprecated.- Throws:
java.io.IOException
-
checkFill
public void checkFill() throws java.io.IOException
Deprecated.- Throws:
java.io.IOException
-
getCreatedTimeStamp
public long getCreatedTimeStamp()
Deprecated.- Specified by:
getCreatedTimeStamp
in interfaceEndPoint
- Returns:
- the epoch time in milliseconds when this EndPoint was created
-
getConnection
public Connection getConnection()
Deprecated.- Specified by:
getConnection
in interfaceEndPoint
- Returns:
- the
Connection
associated with this EndPoint - See Also:
EndPoint.setConnection(Connection)
-
setConnection
public void setConnection(Connection connection)
Deprecated.- Specified by:
setConnection
in interfaceEndPoint
- Parameters:
connection
- theConnection
associated with this EndPoint- See Also:
EndPoint.getConnection()
,EndPoint.upgrade(Connection)
-
isOptimizedForDirectBuffers
public boolean isOptimizedForDirectBuffers()
Deprecated.Description copied from interface:EndPoint
Is the endpoint optimized for DirectBuffer usage- Specified by:
isOptimizedForDirectBuffers
in interfaceEndPoint
- Returns:
- True if direct buffers can be used optimally.
-
onOpen
public void onOpen()
Deprecated.Description copied from interface:EndPoint
Callback method invoked when this EndPoint is opened.
- Specified by:
onOpen
in interfaceEndPoint
- Overrides:
onOpen
in classIdleTimeout
- See Also:
EndPoint.onClose()
-
onClose
public void onClose()
Deprecated.Description copied from interface:EndPoint
Callback method invoked when this EndPoint is close.
- Specified by:
onClose
in interfaceEndPoint
- Overrides:
onClose
in classIdleTimeout
- See Also:
EndPoint.onOpen()
-
fillInterested
public void fillInterested(Callback callback)
Deprecated.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
public boolean tryFillInterested(Callback callback)
Deprecated.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()
Deprecated.- Specified by:
isFillInterested
in interfaceEndPoint
- Returns:
- whether
EndPoint.fillInterested(Callback)
has been called, butEndPoint.fill(ByteBuffer)
has not yet been called
-
write
public void write(Callback callback, java.nio.ByteBuffer... buffers) throws java.lang.IllegalStateException
Deprecated.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:
java.nio.channels.WritePendingException
- if another write operation is concurrent.java.lang.IllegalStateException
-
getFillInterest
public FillInterest getFillInterest()
Deprecated.
-
getWriteFlusher
public WriteFlusher getWriteFlusher()
Deprecated.
-
upgrade
public void upgrade(Connection newConnection)
Deprecated.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
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
toEndPointString
public java.lang.String toEndPointString()
Deprecated.
-
toConnectionString
public java.lang.String toConnectionString()
Deprecated.
-
-