public class HttpConnectionOverFCGI extends AbstractConnection implements Connection
Connection.Listener, Connection.UpgradeFrom, Connection.UpgradeTo| Constructor and Description |
|---|
HttpConnectionOverFCGI(EndPoint endPoint,
HttpDestination destination,
Promise<Connection> promise,
boolean multiplexed) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
abort(java.lang.Throwable failure) |
protected HttpChannelOverFCGI |
acquireHttpChannel(int id,
Request request) |
void |
close()
Performs a logical close of this connection.
|
protected void |
close(java.lang.Throwable failure) |
protected boolean |
closeByHTTP(HttpFields fields) |
protected Flusher |
getFlusher() |
HttpDestination |
getHttpDestination() |
boolean |
isClosed() |
protected HttpChannelOverFCGI |
newHttpChannel(Request request) |
void |
onFillable()
Callback method invoked when the endpoint is ready to be read.
|
boolean |
onIdleExpired()
Callback method invoked upon an idle timeout event.
|
void |
onOpen()
Callback method invoked when this connection is opened.
|
protected void |
release(HttpChannelOverFCGI channel) |
protected SendFailure |
send(HttpExchange exchange) |
void |
send(Request request,
Response.CompleteListener listener)
Sends a request with an associated response listener.
|
java.lang.String |
toConnectionString() |
addListener, failedCallback, fillInterested, getBytesIn, getBytesOut, getCreatedTimeStamp, getEndPoint, getExecutor, getInputBufferSize, getMessagesIn, getMessagesOut, isFillInterested, onClose, onFillInterestedFailed, onReadTimeout, removeListener, setInputBufferSize, toString, tryFillInterested, tryFillInterestedpublic HttpConnectionOverFCGI(EndPoint endPoint, HttpDestination destination, Promise<Connection> promise, boolean multiplexed)
public HttpDestination getHttpDestination()
protected Flusher getFlusher()
public void send(Request request, Response.CompleteListener listener)
Connection
Request.send(Response.CompleteListener) will eventually call this method to send the request.
It is exposed to allow applications to send requests via unpooled connections.
request - the request to sendlistener - the response listenerprotected SendFailure send(HttpExchange exchange)
public void onOpen()
ConnectionCallback method invoked when this connection is opened.
Creators of the connection implementation are responsible for calling this method.
onOpen in interface ConnectiononOpen in class AbstractConnectionpublic void onFillable()
AbstractConnectionCallback method invoked when the endpoint is ready to be read.
onFillable in class AbstractConnectionAbstractConnection.fillInterested()public boolean onIdleExpired()
ConnectionCallback method invoked upon an idle timeout event.
Implementations of this method may return true to indicate that the idle timeout handling should proceed normally, typically failing the EndPoint and causing it to be closed.
When false is returned, the handling of the idle timeout event is halted immediately and the EndPoint left in the state it was before the idle timeout event.
onIdleExpired in interface ConnectiononIdleExpired in class AbstractConnectionprotected void release(HttpChannelOverFCGI channel)
public void close()
ConnectionPerforms a logical close of this connection.
For simple connections, this may just mean to delegate the close to the associated
EndPoint but, for example, SSL connections should write the SSL close message
before closing the associated EndPoint.
close in interface java.io.Closeableclose in interface java.lang.AutoCloseableclose in interface Connectionclose in class AbstractConnectionprotected void close(java.lang.Throwable failure)
public boolean isClosed()
Connection.close()protected boolean closeByHTTP(HttpFields fields)
protected void abort(java.lang.Throwable failure)
protected HttpChannelOverFCGI acquireHttpChannel(int id, Request request)
protected HttpChannelOverFCGI newHttpChannel(Request request)
public java.lang.String toConnectionString()
toConnectionString in class AbstractConnectionCopyright © 1995–2022 Webtide. All rights reserved.