Uses of Class
io.vertx.core.http.WebSocketConnectOptions
-
Packages that use WebSocketConnectOptions Package Description io.vertx.core.http io.vertx.reactivex.core.http io.vertx.rxjava3.core.http -
-
Uses of WebSocketConnectOptions in io.vertx.core.http
Methods in io.vertx.core.http that return WebSocketConnectOptions Modifier and Type Method Description WebSocketConnectOptions
WebSocketConnectOptions. addHeader(CharSequence key, CharSequence value)
WebSocketConnectOptions
WebSocketConnectOptions. addHeader(CharSequence key, Iterable<CharSequence> values)
WebSocketConnectOptions
WebSocketConnectOptions. addHeader(String key, String value)
WebSocketConnectOptions
WebSocketConnectOptions. addSubProtocol(String subprotocol)
Add a WebSocket sub protocol to use.WebSocketConnectOptions
WebSocketConnectOptions. putHeader(CharSequence key, CharSequence value)
WebSocketConnectOptions
WebSocketConnectOptions. putHeader(CharSequence key, Iterable<CharSequence> values)
WebSocketConnectOptions
WebSocketConnectOptions. putHeader(String key, String value)
WebSocketConnectOptions
WebSocketConnectOptions. setAbsoluteURI(String absoluteURI)
WebSocketConnectOptions
WebSocketConnectOptions. setAbsoluteURI(URL url)
WebSocketConnectOptions
WebSocketConnectOptions. setAllowOriginHeader(boolean allowOriginHeader)
Set whether to add theorigin
header to the WebSocket handshake request, enabled by default.WebSocketConnectOptions
WebSocketConnectOptions. setConnectTimeout(long timeout)
WebSocketConnectOptions
WebSocketConnectOptions. setFollowRedirects(Boolean followRedirects)
WebSocketConnectOptions
WebSocketConnectOptions. setHeaders(MultiMap headers)
WebSocketConnectOptions
WebSocketConnectOptions. setHost(String host)
WebSocketConnectOptions
WebSocketConnectOptions. setIdleTimeout(long timeout)
WebSocketConnectOptions
WebSocketConnectOptions. setMethod(HttpMethod method)
WebSocketConnectOptions
WebSocketConnectOptions. setPort(Integer port)
WebSocketConnectOptions
WebSocketConnectOptions. setRegisterWriteHandlers(boolean registerWriteHandlers)
Whether write-handlers should be registered on theEventBus
.WebSocketConnectOptions
WebSocketConnectOptions. setServer(Address server)
WebSocketConnectOptions
WebSocketConnectOptions. setSsl(Boolean ssl)
WebSocketConnectOptions
WebSocketConnectOptions. setSslOptions(ClientSSLOptions sslOptions)
WebSocketConnectOptions
WebSocketConnectOptions. setSubProtocols(List<String> subProtocols)
Set the WebSocket sub protocols to use.WebSocketConnectOptions
WebSocketConnectOptions. setTimeout(long timeout)
Sets the amount of time after which if the WebSocket handshake does not happen within the timeout period anWebSocketHandshakeException
will be passed to the exception handler and the connection will be closed.WebSocketConnectOptions
WebSocketConnectOptions. setTraceOperation(String op)
WebSocketConnectOptions
WebSocketConnectOptions. setURI(String uri)
WebSocketConnectOptions
WebSocketConnectOptions. setVersion(WebSocketVersion version)
Set the WebSocket version.Methods in io.vertx.core.http with parameters of type WebSocketConnectOptions Modifier and Type Method Description Future<WebSocket>
ClientWebSocket. connect(WebSocketConnectOptions options)
Connect this WebSocket with the specified options.Future<WebSocket>
WebSocketClient. connect(WebSocketConnectOptions options)
Connect a WebSocket with the specified options.Constructors in io.vertx.core.http with parameters of type WebSocketConnectOptions Constructor Description WebSocketConnectOptions(WebSocketConnectOptions other)
-
Uses of WebSocketConnectOptions in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http with parameters of type WebSocketConnectOptions Modifier and Type Method Description Future<WebSocket>
ClientWebSocket. connect(WebSocketConnectOptions options)
Connect this WebSocket with the specified options.Future<WebSocket>
WebSocketClient. connect(WebSocketConnectOptions options)
Connect a WebSocket with the specified options.Single<WebSocket>
ClientWebSocket. rxConnect(WebSocketConnectOptions options)
Connect this WebSocket with the specified options.Single<WebSocket>
WebSocketClient. rxConnect(WebSocketConnectOptions options)
Connect a WebSocket with the specified options. -
Uses of WebSocketConnectOptions in io.vertx.rxjava3.core.http
Methods in io.vertx.rxjava3.core.http with parameters of type WebSocketConnectOptions Modifier and Type Method Description Single<WebSocket>
ClientWebSocket. connect(WebSocketConnectOptions options)
Connect this WebSocket with the specified options.Single<WebSocket>
WebSocketClient. connect(WebSocketConnectOptions options)
Connect a WebSocket with the specified options.Single<WebSocket>
ClientWebSocket. rxConnect(WebSocketConnectOptions options)
Connect this WebSocket with the specified options.Single<WebSocket>
WebSocketClient. rxConnect(WebSocketConnectOptions options)
Connect a WebSocket with the specified options.
-