Package org.eclipse.jetty.io
Class FillInterest
- java.lang.Object
-
- org.eclipse.jetty.io.FillInterest
-
public abstract class FillInterest extends Object
A Utility class to help implementEndPoint.fillInterested(Callback)by keeping state and calling the context and callback objects.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFillInterest()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanfillable()Call to signal that a read is now possible.org.eclipse.jetty.util.thread.Invocable.InvocationTypegetCallbackInvocationType()booleanisInterested()protected abstract voidneedsFillInterest()Register the read interest Abstract method to be implemented by the Specific ReadInterest to schedule a future call tofillable()oronFail(Throwable)voidonClose()booleanonFail(Throwable cause)Call to signal a failure to a registered interestvoidregister(org.eclipse.jetty.util.Callback callback)Call to register interest in a callback when a read is possible.StringtoStateString()StringtoString()booleantryRegister(org.eclipse.jetty.util.Callback callback)Call to register interest in a callback when a read is possible.
-
-
-
Method Detail
-
register
public void register(org.eclipse.jetty.util.Callback callback) throws ReadPendingExceptionCall to register interest in a callback when a read is possible. The callback will be called either immediately ifneedsFillInterest()returns true or eventually oncefillable()is called.- Parameters:
callback- the callback to register- Throws:
ReadPendingException- if unable to read due to pending read op
-
tryRegister
public boolean tryRegister(org.eclipse.jetty.util.Callback callback)
Call to register interest in a callback when a read is possible. The callback will be called either immediately ifneedsFillInterest()returns true or eventually oncefillable()is called.- Parameters:
callback- the callback to register- Returns:
- true if the register succeeded
-
fillable
public boolean fillable()
Call to signal that a read is now possible.
-
isInterested
public boolean isInterested()
- Returns:
- True if a read callback has been registered
-
getCallbackInvocationType
public org.eclipse.jetty.util.thread.Invocable.InvocationType getCallbackInvocationType()
-
onFail
public boolean onFail(Throwable cause)
Call to signal a failure to a registered interest- Parameters:
cause- the cause of the failure- Returns:
- true if the cause was passed to a
Callbackinstance
-
onClose
public void onClose()
-
toStateString
public String toStateString()
-
needsFillInterest
protected abstract void needsFillInterest() throws IOExceptionRegister the read interest Abstract method to be implemented by the Specific ReadInterest to schedule a future call tofillable()oronFail(Throwable)- Throws:
IOException- if unable to fulfill interest in fill
-
-