Package org.eclipse.jetty.io
Class ChannelEndPoint
- java.lang.Object
-
- org.eclipse.jetty.io.IdleTimeout
-
- org.eclipse.jetty.io.AbstractEndPoint
-
- org.eclipse.jetty.io.ChannelEndPoint
-
- All Implemented Interfaces:
Closeable,AutoCloseable,EndPoint,ManagedSelector.Selectable
- Direct Known Subclasses:
SocketChannelEndPoint
public abstract class ChannelEndPoint extends AbstractEndPoint implements ManagedSelector.Selectable
Channel End Point.Holds the channel and socket for an NIO endpoint.
-
-
Field Summary
Fields Modifier and Type Field Description protected int_currentInterestOpsThe current value forSelectionKey.interestOps().protected int_desiredInterestOpsThe desired value forSelectionKey.interestOps().protected SelectionKey_keyprotected ManagedSelector_selector
-
Constructor Summary
Constructors Constructor Description ChannelEndPoint(ByteChannel channel, ManagedSelector selector, SelectionKey key, org.eclipse.jetty.util.thread.Scheduler scheduler)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoClose()intfill(ByteBuffer buffer)Fill the passed buffer with data from this endpoint.booleanflush(ByteBuffer... buffers)Flush data from the passed header/buffer to this endpoint.ByteChannelgetChannel()ObjectgetTransport()booleanisOpen()This abstract method should be called to check if idle timeouts should still be checked.booleanisOptimizedForDirectBuffers()Is the endpoint optimized for DirectBuffer usageprotected voidneedsFillInterest()voidonClose()Callback method invoked when thisEndPointis close.protected voidonIncompleteFlush()RunnableonSelected()Callback method invoked when a read or write events has been detected by theManagedSelectorfor this endpoint.StringtoEndPointString()voidupdateKey()Callback method invoked when all the keys selected by theManagedSelectorfor this endpoint have been processed.-
Methods inherited from class org.eclipse.jetty.io.AbstractEndPoint
checkFill, checkFlush, close, close, doShutdownInput, doShutdownOutput, fillInterested, getConnection, getCreatedTimeStamp, getFillInterest, getWriteFlusher, isFillInterested, isInputShutdown, isOutputShutdown, onClose, onIdleExpired, onOpen, reset, setConnection, shutdownInput, shutdownOutput, toConnectionString, toString, tryFillInterested, upgrade, write
-
Methods inherited from class org.eclipse.jetty.io.IdleTimeout
checkIdleTimeout, getIdleFor, getIdleTimeout, getIdleTimestamp, 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
getIdleTimeout, getLocalAddress, getRemoteAddress, setIdleTimeout
-
-
-
-
Field Detail
-
_selector
protected final ManagedSelector _selector
-
_key
protected final SelectionKey _key
-
_currentInterestOps
protected int _currentInterestOps
The current value forSelectionKey.interestOps().
-
_desiredInterestOps
protected int _desiredInterestOps
The desired value forSelectionKey.interestOps().
-
-
Constructor Detail
-
ChannelEndPoint
public ChannelEndPoint(ByteChannel channel, ManagedSelector selector, SelectionKey key, org.eclipse.jetty.util.thread.Scheduler scheduler)
-
-
Method Detail
-
isOptimizedForDirectBuffers
public boolean isOptimizedForDirectBuffers()
Description copied from interface:EndPointIs the endpoint optimized for DirectBuffer usage- Specified by:
isOptimizedForDirectBuffersin interfaceEndPoint- Overrides:
isOptimizedForDirectBuffersin classAbstractEndPoint- Returns:
- True if direct buffers can be used optimally.
-
isOpen
public boolean isOpen()
Description copied from class:IdleTimeoutThis abstract method should be called to check if idle timeouts should still be checked.- Specified by:
isOpenin interfaceEndPoint- Overrides:
isOpenin classAbstractEndPoint- Returns:
- True if the entity monitored should still be checked for idle timeouts
-
doClose
public void doClose()
- Overrides:
doClosein classAbstractEndPoint
-
onClose
public void onClose()
Description copied from interface:EndPointCallback method invoked when this
EndPointis close.- Specified by:
onClosein interfaceEndPoint- Overrides:
onClosein classAbstractEndPoint- See Also:
EndPoint.onOpen()
-
fill
public int fill(ByteBuffer buffer) throws IOException
Description copied from interface:EndPointFill 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.- Specified by:
fillin interfaceEndPoint- 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
intvalue indicating the number of bytes filled or -1 if EOF is read or the input is shutdown. - Throws:
IOException- if the endpoint is closed.
-
flush
public boolean flush(ByteBuffer... buffers) throws IOException
Description copied from interface:EndPointFlush 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.- Specified by:
flushin interfaceEndPoint- Parameters:
buffers- 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:
IOException- If the endpoint is closed or output is shutdown.
-
getChannel
public ByteChannel getChannel()
-
getTransport
public Object getTransport()
- Specified by:
getTransportin interfaceEndPoint- Returns:
- The underlying transport object (socket, channel, etc.)
-
needsFillInterest
protected void needsFillInterest()
- Specified by:
needsFillInterestin classAbstractEndPoint
-
onIncompleteFlush
protected void onIncompleteFlush()
- Specified by:
onIncompleteFlushin classAbstractEndPoint
-
onSelected
public Runnable onSelected()
Description copied from interface:ManagedSelector.SelectableCallback method invoked when a read or write events has been detected by theManagedSelectorfor this endpoint.- Specified by:
onSelectedin interfaceManagedSelector.Selectable- Returns:
- a job that may block or null
-
updateKey
public void updateKey()
Description copied from interface:ManagedSelector.SelectableCallback method invoked when all the keys selected by theManagedSelectorfor this endpoint have been processed.- Specified by:
updateKeyin interfaceManagedSelector.Selectable
-
toEndPointString
public String toEndPointString()
- Overrides:
toEndPointStringin classAbstractEndPoint
-
-