Uses of Class
io.vertx.core.http.WebSocketConnectOptions
Packages that use WebSocketConnectOptions
-
Uses of WebSocketConnectOptions in io.vertx.core.http
Methods in io.vertx.core.http that return WebSocketConnectOptionsModifier and TypeMethodDescriptionWebSocketConnectOptions.addHeader(CharSequence key, CharSequence value) WebSocketConnectOptions.addHeader(CharSequence key, Iterable<CharSequence> values) WebSocketConnectOptions.addSubProtocol(String subprotocol) Add a WebSocket sub protocol to use.WebSocketConnectOptions.putHeader(CharSequence key, CharSequence value) WebSocketConnectOptions.putHeader(CharSequence key, Iterable<CharSequence> values) WebSocketConnectOptions.setAbsoluteURI(String absoluteURI) WebSocketConnectOptions.setAbsoluteURI(URL url) WebSocketConnectOptions.setAllowOriginHeader(boolean allowOriginHeader) Set whether to add theoriginheader to the WebSocket handshake request, enabled by default.WebSocketConnectOptions.setConnectTimeout(long timeout) WebSocketConnectOptions.setFollowRedirects(Boolean followRedirects) WebSocketConnectOptions.setHeaders(MultiMap headers) WebSocketConnectOptions.setIdleTimeout(long timeout) WebSocketConnectOptions.setMethod(HttpMethod method) WebSocketConnectOptions.setProtocolVersion(HttpVersion protocolVersion) WebSocketConnectOptions.setRegisterWriteHandlers(boolean registerWriteHandlers) Whether write-handlers should be registered on theEventBus.WebSocketConnectOptions.setSslOptions(ClientSSLOptions sslOptions) WebSocketConnectOptions.setSubProtocols(List<String> subProtocols) Set the WebSocket sub protocols to use.WebSocketConnectOptions.setTimeout(long timeout) Sets the amount of time after which if the WebSocket handshake does not happen within the timeout period anWebSocketHandshakeExceptionwill be passed to the exception handler and the connection will be closed.WebSocketConnectOptions.setTraceOperation(String op) WebSocketConnectOptions.setVersion(WebSocketVersion version) Set the WebSocket version.Methods in io.vertx.core.http with parameters of type WebSocketConnectOptionsModifier and TypeMethodDescriptionClientWebSocket.connect(WebSocketConnectOptions options) Connect this WebSocket with the specified options.WebSocketClient.connect(WebSocketConnectOptions options) Connect a WebSocket with the specified options.Constructors in io.vertx.core.http with parameters of type WebSocketConnectOptions -
Uses of WebSocketConnectOptions in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http with parameters of type WebSocketConnectOptionsModifier and TypeMethodDescriptionClientWebSocket.connect(WebSocketConnectOptions options) Connect this WebSocket with the specified options.WebSocketClient.connect(WebSocketConnectOptions options) Connect a WebSocket with the specified options.ClientWebSocket.rxConnect(WebSocketConnectOptions options) Connect this WebSocket with the specified options.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 WebSocketConnectOptionsModifier and TypeMethodDescriptionClientWebSocket.connect(WebSocketConnectOptions options) Connect this WebSocket with the specified options.WebSocketClient.connect(WebSocketConnectOptions options) Connect a WebSocket with the specified options.ClientWebSocket.rxConnect(WebSocketConnectOptions options) Connect this WebSocket with the specified options.WebSocketClient.rxConnect(WebSocketConnectOptions options) Connect a WebSocket with the specified options.