public class HttpConnection extends Object
HTTP/1.x connection provides an limited implementation, the following methods are implemented:
close()
closeHandler(io.vertx.core.Handler<java.lang.Void>)
exceptionHandler(io.vertx.core.Handler<java.lang.Throwable>)
NOTE: This class has been automatically generated from the original
non RX-ified interface using Vert.x codegen.
Modifier and Type | Field and Description |
---|---|
static io.vertx.lang.rx.TypeArg<HttpConnection> |
__TYPE_ARG |
Constructor and Description |
---|
HttpConnection(HttpConnection delegate) |
HttpConnection(Object delegate) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Close the connection and all the currently active streams.
|
HttpConnection |
closeHandler(Handler<Void> handler)
Set a close handler.
|
boolean |
equals(Object o) |
HttpConnection |
exceptionHandler(Handler<Throwable> handler)
Set an handler called when a connection error happens
|
HttpConnection |
getDelegate() |
int |
getWindowSize() |
HttpConnection |
goAway(long errorCode)
Like
goAway(long) with a last stream id -1 which means to disallow any new stream creation. |
HttpConnection |
goAway(long errorCode,
int lastStreamId)
Like
goAway(long) with no buffer. |
HttpConnection |
goAway(long errorCode,
int lastStreamId,
Buffer debugData)
Send a go away frame to the remote endpoint of the connection.
|
HttpConnection |
goAwayHandler(Handler<GoAway> handler)
Set an handler called when a frame is received.
|
int |
hashCode() |
String |
indicatedServerName()
Returns the SNI server name presented during the SSL handshake by the client.
|
boolean |
isSsl() |
SocketAddress |
localAddress() |
static HttpConnection |
newInstance(HttpConnection arg) |
HttpConnection |
ping(Buffer data,
Handler<AsyncResult<Buffer>> pongHandler)
Send a frame to the remote endpoint.
|
HttpConnection |
pingHandler(Handler<Buffer> handler)
Set an handler notified when a frame is received from the remote endpoint.
|
Observable<Buffer> |
pingObservable(Buffer data)
Deprecated.
use
rxPing(io.vertx.rxjava.core.buffer.Buffer) instead |
SocketAddress |
remoteAddress() |
Http2Settings |
remoteSettings() |
HttpConnection |
remoteSettingsHandler(Handler<Http2Settings> handler)
Set an handler that is called when remote endpoint
Http2Settings are updated. |
Single<Buffer> |
rxPing(Buffer data)
Send a frame to the remote endpoint.
|
Single<Void> |
rxUpdateSettings(Http2Settings settings)
Send to the remote endpoint an update of this endpoint settings
The |
Http2Settings |
settings() |
HttpConnection |
setWindowSize(int windowSize)
Update the current connection wide window size to a new size.
|
HttpConnection |
shutdown()
Initiate a connection shutdown, a go away frame is sent and the connection is closed when all current active streams
are closed or after a time out of 30 seconds.
|
HttpConnection |
shutdown(long timeoutMs)
Initiate a connection shutdown, a go away frame is sent and the connection is closed when all current streams
will be closed or the
timeout is fired. |
HttpConnection |
shutdownHandler(Handler<Void> handler)
Set an handler called when a frame has been sent or received and all connections are closed.
|
SSLSession |
sslSession() |
String |
toString() |
HttpConnection |
updateSettings(Http2Settings settings)
Send to the remote endpoint an update of the server settings.
|
HttpConnection |
updateSettings(Http2Settings settings,
Handler<AsyncResult<Void>> completionHandler)
Send to the remote endpoint an update of this endpoint settings
The |
Observable<Void> |
updateSettingsObservable(Http2Settings settings)
Deprecated.
|
public static final io.vertx.lang.rx.TypeArg<HttpConnection> __TYPE_ARG
public HttpConnection(HttpConnection delegate)
public HttpConnection(Object delegate)
public HttpConnection getDelegate()
public int getWindowSize()
-1
for HTTP/1.xpublic HttpConnection setWindowSize(int windowSize)
Increasing this value, gives better performance when several data streams are multiplexed
This is not implemented for HTTP/1.x.
windowSize
- the new window sizepublic HttpConnection goAway(long errorCode)
goAway(long)
with a last stream id -1
which means to disallow any new stream creation.errorCode
- public HttpConnection goAway(long errorCode, int lastStreamId)
goAway(long)
with no buffer.errorCode
- lastStreamId
- public HttpConnection goAway(long errorCode, int lastStreamId, Buffer debugData)
errorCode
and debugData
lastStreamId
will be closed0
when all the remaining streams are closed this connection will be closed automaticallyThis is not implemented for HTTP/1.x.
errorCode
- the error codelastStreamId
- the last stream iddebugData
- additional debug data sent to the remote endpointpublic HttpConnection goAwayHandler(Handler<GoAway> handler)
This is not implemented for HTTP/1.x.
handler
- the handlerpublic HttpConnection shutdownHandler(Handler<Void> handler)
This is not implemented for HTTP/1.x.
handler
- the handlerpublic HttpConnection shutdown()
This is not implemented for HTTP/1.x.
public HttpConnection shutdown(long timeoutMs)
timeout
is fired.
This is not implemented for HTTP/1.x.
timeoutMs
- the timeout in millisecondspublic HttpConnection closeHandler(Handler<Void> handler)
handler
- the handler to be notifiedpublic void close()
An HTTP/2 connection will send a frame before.
public Http2Settings settings()
public HttpConnection updateSettings(Http2Settings settings)
This is not implemented for HTTP/1.x.
settings
- the new settingspublic HttpConnection updateSettings(Http2Settings settings, Handler<AsyncResult<Void>> completionHandler)
The completionHandler
will be notified when the remote endpoint has acknowledged the settings.
This is not implemented for HTTP/1.x.
settings
- the new settingscompletionHandler
- the handler notified when the settings have been acknowledged by the remote endpoint@Deprecated public Observable<Void> updateSettingsObservable(Http2Settings settings)
rxUpdateSettings(io.vertx.core.http.Http2Settings)
instead
The completionHandler
will be notified when the remote endpoint has acknowledged the settings.
This is not implemented for HTTP/1.x.
settings
- the new settingspublic Single<Void> rxUpdateSettings(Http2Settings settings)
The completionHandler
will be notified when the remote endpoint has acknowledged the settings.
This is not implemented for HTTP/1.x.
settings
- the new settingspublic Http2Settings remoteSettings()
public HttpConnection remoteSettingsHandler(Handler<Http2Settings> handler)
Http2Settings
are updated.
This is not implemented for HTTP/1.x.
handler
- the handler for remote endpoint settingspublic HttpConnection ping(Buffer data, Handler<AsyncResult<Buffer>> pongHandler)
This is not implemented for HTTP/1.x.
data
- the 8 bytes data of the framepongHandler
- an async result handler notified with pong reply or the failure@Deprecated public Observable<Buffer> pingObservable(Buffer data)
rxPing(io.vertx.rxjava.core.buffer.Buffer)
insteadThis is not implemented for HTTP/1.x.
data
- the 8 bytes data of the framepublic Single<Buffer> rxPing(Buffer data)
This is not implemented for HTTP/1.x.
data
- the 8 bytes data of the framepublic HttpConnection pingHandler(Handler<Buffer> handler)
This is not implemented for HTTP/1.x.
handler
- the handler to be called when a is receivedpublic HttpConnection exceptionHandler(Handler<Throwable> handler)
handler
- the handlerpublic SocketAddress remoteAddress()
null
(e.g a server bound on a domain socket)public SocketAddress localAddress()
null
(e.g a server bound on a domain socket)public boolean isSsl()
HttpConnection
is encrypted via SSL/TLS.public String indicatedServerName()
public SSLSession sslSession()
public static HttpConnection newInstance(HttpConnection arg)
Copyright © 2020 Eclipse. All rights reserved.