/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package io.vertx.rxjava.core.http;

import java.util.Map;
import rx.Observable;
import rx.Single;
import javax.net.ssl.SSLSession;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;

Represents a server side WebSocket.

Instances of this class are passed into a HttpServer.websocketHandler or provided when a WebSocket handshake is manually HttpServerRequest.upgradeed.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * Represents a server side WebSocket. * <p> * Instances of this class are passed into a {@link io.vertx.rxjava.core.http.HttpServer#websocketHandler} or provided * when a WebSocket handshake is manually {@link io.vertx.rxjava.core.http.HttpServerRequest#upgrade}ed. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.core.http.ServerWebSocket original} non RX-ified interface using Vert.x codegen. */
@io.vertx.lang.rx.RxGen(io.vertx.core.http.ServerWebSocket.class) public class ServerWebSocket implements io.vertx.rxjava.core.http.WebSocketBase { @Override public String toString() { return delegate.toString(); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; ServerWebSocket that = (ServerWebSocket) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final io.vertx.lang.rx.TypeArg<ServerWebSocket> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new ServerWebSocket((io.vertx.core.http.ServerWebSocket) obj), ServerWebSocket::getDelegate ); private final io.vertx.core.http.ServerWebSocket delegate; public ServerWebSocket(io.vertx.core.http.ServerWebSocket delegate) { this.delegate = delegate; } public io.vertx.core.http.ServerWebSocket getDelegate() { return delegate; } private rx.Observable<io.vertx.rxjava.core.buffer.Buffer> observable; public synchronized rx.Observable<io.vertx.rxjava.core.buffer.Buffer> toObservable() { if (observable == null) { java.util.function.Function<io.vertx.core.buffer.Buffer, io.vertx.rxjava.core.buffer.Buffer> conv = io.vertx.rxjava.core.buffer.Buffer::newInstance; observable = io.vertx.rx.java.RxHelper.toObservable(delegate, conv); } return observable; } private io.vertx.rx.java.WriteStreamSubscriber<io.vertx.rxjava.core.buffer.Buffer> subscriber; public synchronized io.vertx.rx.java.WriteStreamSubscriber<io.vertx.rxjava.core.buffer.Buffer> toSubscriber() { if (subscriber == null) { java.util.function.Function<io.vertx.rxjava.core.buffer.Buffer, io.vertx.core.buffer.Buffer> conv = io.vertx.rxjava.core.buffer.Buffer::getDelegate; subscriber = io.vertx.rx.java.RxHelper.toSubscriber(getDelegate(), conv); } return subscriber; }
Same as WebSocketBase.end but writes some data to the stream before ending.
Params:
  • data – the data to write
/** * Same as {@link io.vertx.rxjava.core.http.WebSocketBase#end} but writes some data to the stream before ending. * @param data the data to write */
public void end(io.vertx.rxjava.core.buffer.Buffer data) { delegate.end(data.getDelegate()); }
Same as but with an handler called when the operation completes
Params:
  • data –
  • handler –
/** * Same as but with an <code>handler</code> called when the operation completes * @param data * @param handler */
public void end(io.vertx.rxjava.core.buffer.Buffer data, Handler<AsyncResult<Void>> handler) { delegate.end(data.getDelegate(), handler); }
Same as but with an handler called when the operation completes
Params:
  • data –
Returns:
Deprecated:use rxEnd instead
/** * Same as but with an <code>handler</code> called when the operation completes * @param data * @return * @deprecated use {@link #rxEnd} instead */
@Deprecated() public Observable<Void> endObservable(io.vertx.rxjava.core.buffer.Buffer data) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); end(data, handler.toHandler()); return handler; }
Same as but with an handler called when the operation completes
Params:
  • data –
Returns:
/** * Same as but with an <code>handler</code> called when the operation completes * @param data * @return */
public Single<Void> rxEnd(io.vertx.rxjava.core.buffer.Buffer data) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { end(data, fut); })); }
This will return true if there are more bytes in the write queue than the value set using setWriteQueueMaxSize
Returns:true if write queue is full
/** * This will return <code>true</code> if there are more bytes in the write queue than the value set using {@link io.vertx.rxjava.core.http.ServerWebSocket#setWriteQueueMaxSize} * @return true if write queue is full */
public boolean writeQueueFull() { boolean ret = delegate.writeQueueFull(); return ret; }
Pause this stream and return a to transfer the elements of this stream to a destination .

The stream will be resumed when the pipe will be wired to a WriteStream.
Returns:a pipe
/** * Pause this stream and return a to transfer the elements of this stream to a destination . * <p/> * The stream will be resumed when the pipe will be wired to a <code>WriteStream</code>. * @return a pipe */
public io.vertx.rxjava.core.streams.Pipe<io.vertx.rxjava.core.buffer.Buffer> pipe() { io.vertx.rxjava.core.streams.Pipe<io.vertx.rxjava.core.buffer.Buffer> ret = io.vertx.rxjava.core.streams.Pipe.newInstance(delegate.pipe(), (io.vertx.lang.rx.TypeArg)io.vertx.rxjava.core.buffer.Buffer.__TYPE_ARG); return ret; }
Like ReadStream.pipeTo but with no completion handler.
Params:
  • dst –
/** * Like {@link io.vertx.rxjava.core.streams.ReadStream#pipeTo} but with no completion handler. * @param dst */
public void pipeTo(io.vertx.rxjava.core.streams.WriteStream<io.vertx.rxjava.core.buffer.Buffer> dst) { delegate.pipeTo(dst.getDelegate()); }
Pipe this ReadStream to the WriteStream.

Elements emitted by this stream will be written to the write stream until this stream ends or fails.

Once this stream has ended or failed, the write stream will be ended and the handler will be called with the result.

Params:
  • dst – the destination write stream
  • handler –
/** * Pipe this <code>ReadStream</code> to the <code>WriteStream</code>. * <p> * Elements emitted by this stream will be written to the write stream until this stream ends or fails. * <p> * Once this stream has ended or failed, the write stream will be ended and the <code>handler</code> will be * called with the result. * @param dst the destination write stream * @param handler */
public void pipeTo(io.vertx.rxjava.core.streams.WriteStream<io.vertx.rxjava.core.buffer.Buffer> dst, Handler<AsyncResult<Void>> handler) { delegate.pipeTo(dst.getDelegate(), handler); }
Pipe this ReadStream to the WriteStream.

Elements emitted by this stream will be written to the write stream until this stream ends or fails.

Once this stream has ended or failed, the write stream will be ended and the handler will be called with the result.

Params:
  • dst – the destination write stream
Returns:
Deprecated:use rxPipeTo instead
/** * Pipe this <code>ReadStream</code> to the <code>WriteStream</code>. * <p> * Elements emitted by this stream will be written to the write stream until this stream ends or fails. * <p> * Once this stream has ended or failed, the write stream will be ended and the <code>handler</code> will be * called with the result. * @param dst the destination write stream * @return * @deprecated use {@link #rxPipeTo} instead */
@Deprecated() public Observable<Void> pipeToObservable(io.vertx.rxjava.core.streams.WriteStream<io.vertx.rxjava.core.buffer.Buffer> dst) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); pipeTo(dst, handler.toHandler()); return handler; }
Pipe this ReadStream to the WriteStream.

Elements emitted by this stream will be written to the write stream until this stream ends or fails.

Once this stream has ended or failed, the write stream will be ended and the handler will be called with the result.

Params:
  • dst – the destination write stream
Returns:
/** * Pipe this <code>ReadStream</code> to the <code>WriteStream</code>. * <p> * Elements emitted by this stream will be written to the write stream until this stream ends or fails. * <p> * Once this stream has ended or failed, the write stream will be ended and the <code>handler</code> will be * called with the result. * @param dst the destination write stream * @return */
public Single<Void> rxPipeTo(io.vertx.rxjava.core.streams.WriteStream<io.vertx.rxjava.core.buffer.Buffer> dst) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { pipeTo(dst, fut); })); }
When a WebSocket is created it automatically registers an event handler with the event bus - the ID of that handler is given by this method.

Given this ID, a different event loop can send a binary frame to that event handler using the event bus and that buffer will be received by this instance in its own event loop and written to the underlying connection. This allows you to write data to other WebSockets which are owned by different event loops.

Returns:the binary handler id
/** * When a <code>WebSocket</code> is created it automatically registers an event handler with the event bus - the ID of that * handler is given by this method. * <p> * Given this ID, a different event loop can send a binary frame to that event handler using the event bus and * that buffer will be received by this instance in its own event loop and written to the underlying connection. This * allows you to write data to other WebSockets which are owned by different event loops. * @return the binary handler id */
public String binaryHandlerID() { String ret = delegate.binaryHandlerID(); return ret; }
When a WebSocket is created it automatically registers an event handler with the eventbus, the ID of that handler is given by textHandlerID.

Given this ID, a different event loop can send a text frame to that event handler using the event bus and that buffer will be received by this instance in its own event loop and written to the underlying connection. This allows you to write data to other WebSockets which are owned by different event loops.

Returns:
/** * When a <code>WebSocket</code> is created it automatically registers an event handler with the eventbus, the ID of that * handler is given by <code>textHandlerID</code>. * <p> * Given this ID, a different event loop can send a text frame to that event handler using the event bus and * that buffer will be received by this instance in its own event loop and written to the underlying connection. This * allows you to write data to other WebSockets which are owned by different event loops. * @return */
public String textHandlerID() { String ret = delegate.textHandlerID(); return ret; }
Returns the WebSocket sub protocol selected by the WebSocket handshake.

On the server, the value will be null when the handler receives the websocket callback as the handshake will not be completed yet.
Returns:
/** * Returns the WebSocket sub protocol selected by the WebSocket handshake. * <p/> * On the server, the value will be <code>null</code> when the handler receives the websocket callback as the * handshake will not be completed yet. * @return */
public String subProtocol() { String ret = delegate.subProtocol(); return ret; }
Writes a ping frame to the connection. This will be written in a single frame. Ping frames may be at most 125 bytes (octets).

This method should not be used to write application data and should only be used for implementing a keep alive or to ensure the client is still responsive, see RFC 6455 Section section 5.5.2.

There is no handler for ping frames because RFC 6455 clearly states that the only response to a ping frame is a pong frame with identical contents.

Params:
  • data – the data to write, may be at most 125 bytes
Returns:a reference to this, so the API can be used fluently
/** * Writes a ping frame to the connection. This will be written in a single frame. Ping frames may be at most 125 bytes (octets). * <p> * This method should not be used to write application data and should only be used for implementing a keep alive or * to ensure the client is still responsive, see RFC 6455 Section <a href="https://tools.ietf.org/html/rfc6455#section-5.5.2">section 5.5.2</a>. * <p> * There is no handler for ping frames because RFC 6455 clearly * states that the only response to a ping frame is a pong frame with identical contents. * @param data the data to write, may be at most 125 bytes * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.core.http.WebSocketBase writePing(io.vertx.rxjava.core.buffer.Buffer data) { delegate.writePing(data.getDelegate()); return this; }
Writes a pong frame to the connection. This will be written in a single frame. Pong frames may be at most 125 bytes (octets).

This method should not be used to write application data and should only be used for implementing a keep alive or to ensure the client is still responsive, see RFC 6455 section 5.5.2.

There is no need to manually write a pong frame, as the server and client both handle responding to a ping from with a pong from automatically and this is exposed to users. RFC 6455 section 5.5.3 states that pongs may be sent unsolicited in order to implement a one way heartbeat.

Params:
  • data – the data to write, may be at most 125 bytes
Returns:a reference to this, so the API can be used fluently
/** * Writes a pong frame to the connection. This will be written in a single frame. Pong frames may be at most 125 bytes (octets). * <p> * This method should not be used to write application data and should only be used for implementing a keep alive or * to ensure the client is still responsive, see RFC 6455 <a href="https://tools.ietf.org/html/rfc6455#section-5.5.2">section 5.5.2</a>. * <p> * There is no need to manually write a pong frame, as the server and client both handle responding to a ping from with a pong from * automatically and this is exposed to users. RFC 6455 <a href="https://tools.ietf.org/html/rfc6455#section-5.5.3">section 5.5.3</a> states that pongs may be sent unsolicited in order * to implement a one way heartbeat. * @param data the data to write, may be at most 125 bytes * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.core.http.WebSocketBase writePong(io.vertx.rxjava.core.buffer.Buffer data) { delegate.writePong(data.getDelegate()); return this; }
Set a text message handler on the connection. This handler will be called similar to the , but the buffer will be converted to a String first
Params:
  • handler – the handler
Returns:a reference to this, so the API can be used fluently
/** * Set a text message handler on the connection. This handler will be called similar to the * , but the buffer will be converted to a String first * @param handler the handler * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.core.http.WebSocketBase textMessageHandler(Handler<String> handler) { delegate.textMessageHandler(handler); return this; }
Set a binary message handler on the connection. This handler serves a similar purpose to handler except that if a message comes into the socket in multiple frames, the data from the frames will be aggregated into a single buffer before calling the handler (using WebSocketFrame.isFinal to find the boundaries).
Params:
  • handler – the handler
Returns:a reference to this, so the API can be used fluently
/** * Set a binary message handler on the connection. This handler serves a similar purpose to {@link io.vertx.rxjava.core.http.ServerWebSocket#handler} * except that if a message comes into the socket in multiple frames, the data from the frames will be aggregated * into a single buffer before calling the handler (using {@link io.vertx.rxjava.core.http.WebSocketFrame#isFinal} to find the boundaries). * @param handler the handler * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.core.http.WebSocketBase binaryMessageHandler(Handler<io.vertx.rxjava.core.buffer.Buffer> handler) { delegate.binaryMessageHandler(new Handler<io.vertx.core.buffer.Buffer>() { public void handle(io.vertx.core.buffer.Buffer event) { handler.handle(io.vertx.rxjava.core.buffer.Buffer.newInstance(event)); } }); return this; }
Set a pong frame handler on the connection. This handler will be invoked every time a pong frame is received on the server, and can be used by both clients and servers since the RFC 6455 section 5.5.2 and section 5.5.3 do not specify whether the client or server sends a ping.

Pong frames may be at most 125 bytes (octets).

There is no ping handler since ping frames should immediately be responded to with a pong frame with identical content

Pong frames may be received unsolicited.

Params:
  • handler – the handler
Returns:a reference to this, so the API can be used fluently
/** * Set a pong frame handler on the connection. This handler will be invoked every time a pong frame is received * on the server, and can be used by both clients and servers since the RFC 6455 <a href="https://tools.ietf.org/html/rfc6455#section-5.5.2">section 5.5.2</a> and <a href="https://tools.ietf.org/html/rfc6455#section-5.5.3">section 5.5.3</a> do not * specify whether the client or server sends a ping. * <p> * Pong frames may be at most 125 bytes (octets). * <p> * There is no ping handler since ping frames should immediately be responded to with a pong frame with identical content * <p> * Pong frames may be received unsolicited. * @param handler the handler * @return a reference to this, so the API can be used fluently */
public io.vertx.rxjava.core.http.WebSocketBase pongHandler(Handler<io.vertx.rxjava.core.buffer.Buffer> handler) { delegate.pongHandler(new Handler<io.vertx.core.buffer.Buffer>() { public void handle(io.vertx.core.buffer.Buffer event) { handler.handle(io.vertx.rxjava.core.buffer.Buffer.newInstance(event)); } }); return this; }
Calls close
/** * Calls {@link io.vertx.rxjava.core.http.ServerWebSocket#close} */
public void end() { delegate.end(); }
Params:
  • handler –
/** * Calls {@link io.vertx.rxjava.core.http.WebSocketBase#close} * @param handler */
public void end(Handler<AsyncResult<Void>> handler) { delegate.end(handler); }
Returns:
Deprecated:use rxEnd instead
/** * Calls {@link io.vertx.rxjava.core.http.WebSocketBase#close} * @return * @deprecated use {@link #rxEnd} instead */
@Deprecated() public Observable<Void> endObservable() { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); end(handler.toHandler()); return handler; }
Returns:
/** * Calls {@link io.vertx.rxjava.core.http.WebSocketBase#close} * @return */
public Single<Void> rxEnd() { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { end(fut); })); }
Same as close but with an handler called when the operation completes
Params:
  • handler –
/** * Same as {@link io.vertx.rxjava.core.http.ServerWebSocket#close} but with an <code>handler</code> called when the operation completes * @param handler */
public void close(Handler<AsyncResult<Void>> handler) { delegate.close(handler); }
Same as close but with an handler called when the operation completes
Returns:
Deprecated:use rxClose instead
/** * Same as {@link io.vertx.rxjava.core.http.ServerWebSocket#close} but with an <code>handler</code> called when the operation completes * @return * @deprecated use {@link #rxClose} instead */
@Deprecated() public Observable<Void> closeObservable() { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); close(handler.toHandler()); return handler; }
Same as close but with an handler called when the operation completes
Returns:
/** * Same as {@link io.vertx.rxjava.core.http.ServerWebSocket#close} but with an <code>handler</code> called when the operation completes * @return */
public Single<Void> rxClose() { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { close(fut); })); }
Close the WebSocket sending a close frame with specified status code. You can give a look at various close payloads here: RFC6455 section 7.4.1

No more messages can be sent.
Params:
  • statusCode – Status code
/** * Close the WebSocket sending a close frame with specified status code. You can give a look at various close payloads * here: RFC6455 <a href="https://tools.ietf.org/html/rfc6455#section-7.4.1">section 7.4.1</a> * <p/> * No more messages can be sent. * @param statusCode Status code */
public void close(short statusCode) { delegate.close(statusCode); }
Same as WebSocketBase.close but with an handler called when the operation completes
Params:
  • statusCode –
  • handler –
/** * Same as {@link io.vertx.rxjava.core.http.WebSocketBase#close} but with an <code>handler</code> called when the operation completes * @param statusCode * @param handler */
public void close(short statusCode, Handler<AsyncResult<Void>> handler) { delegate.close(statusCode, handler); }
Same as WebSocketBase.close but with an handler called when the operation completes
Params:
  • statusCode –
Returns:
Deprecated:use rxClose instead
/** * Same as {@link io.vertx.rxjava.core.http.WebSocketBase#close} but with an <code>handler</code> called when the operation completes * @param statusCode * @return * @deprecated use {@link #rxClose} instead */
@Deprecated() public Observable<Void> closeObservable(short statusCode) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); close(statusCode, handler.toHandler()); return handler; }
Same as WebSocketBase.close but with an handler called when the operation completes
Params:
  • statusCode –
Returns:
/** * Same as {@link io.vertx.rxjava.core.http.WebSocketBase#close} but with an <code>handler</code> called when the operation completes * @param statusCode * @return */
public Single<Void> rxClose(short statusCode) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { close(statusCode, fut); })); }
Close sending a close frame with specified status code and reason. You can give a look at various close payloads here: RFC6455 section 7.4.1

No more messages can be sent.
Params:
  • statusCode – Status code
  • reason – reason of closure
/** * Close sending a close frame with specified status code and reason. You can give a look at various close payloads * here: RFC6455 <a href="https://tools.ietf.org/html/rfc6455#section-7.4.1">section 7.4.1</a> * <p/> * No more messages can be sent. * @param statusCode Status code * @param reason reason of closure */
public void close(short statusCode, String reason) { delegate.close(statusCode, reason); }
Same as but with an handler called when the operation completes
Params:
  • statusCode –
  • reason –
  • handler –
/** * Same as but with an <code>handler</code> called when the operation completes * @param statusCode * @param reason * @param handler */
public void close(short statusCode, String reason, Handler<AsyncResult<Void>> handler) { delegate.close(statusCode, reason, handler); }
Same as but with an handler called when the operation completes
Params:
  • statusCode –
  • reason –
Returns:
Deprecated:use rxClose instead
/** * Same as but with an <code>handler</code> called when the operation completes * @param statusCode * @param reason * @return * @deprecated use {@link #rxClose} instead */
@Deprecated() public Observable<Void> closeObservable(short statusCode, String reason) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); close(statusCode, reason, handler.toHandler()); return handler; }
Same as but with an handler called when the operation completes
Params:
  • statusCode –
  • reason –
Returns:
/** * Same as but with an <code>handler</code> called when the operation completes * @param statusCode * @param reason * @return */
public Single<Void> rxClose(short statusCode, String reason) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { close(statusCode, reason, fut); })); }
Returns:the remote address for this socket
/** * @return the remote address for this socket */
public io.vertx.rxjava.core.net.SocketAddress remoteAddress() { if (cached_0 != null) { return cached_0; } io.vertx.rxjava.core.net.SocketAddress ret = io.vertx.rxjava.core.net.SocketAddress.newInstance(delegate.remoteAddress()); cached_0 = ret; return ret; }
Returns:the local address for this socket
/** * @return the local address for this socket */
public io.vertx.rxjava.core.net.SocketAddress localAddress() { if (cached_1 != null) { return cached_1; } io.vertx.rxjava.core.net.SocketAddress ret = io.vertx.rxjava.core.net.SocketAddress.newInstance(delegate.localAddress()); cached_1 = ret; return ret; }
Returns:true if this HttpConnection is encrypted via SSL/TLS.
/** * @return true if this {@link io.vertx.rxjava.core.http.HttpConnection} is encrypted via SSL/TLS. */
public boolean isSsl() { boolean ret = delegate.isSsl(); return ret; }
Returns:true if the WebSocket is closed
/** * @return <code>true</code> if the WebSocket is closed */
public boolean isClosed() { boolean ret = delegate.isClosed(); return ret; } public io.vertx.rxjava.core.http.ServerWebSocket exceptionHandler(Handler<Throwable> handler) { delegate.exceptionHandler(handler); return this; } public io.vertx.rxjava.core.http.ServerWebSocket handler(Handler<io.vertx.rxjava.core.buffer.Buffer> handler) { delegate.handler(new Handler<io.vertx.core.buffer.Buffer>() { public void handle(io.vertx.core.buffer.Buffer event) { handler.handle(io.vertx.rxjava.core.buffer.Buffer.newInstance(event)); } }); return this; } public io.vertx.rxjava.core.http.ServerWebSocket pause() { delegate.pause(); return this; } public io.vertx.rxjava.core.http.ServerWebSocket resume() { delegate.resume(); return this; } public io.vertx.rxjava.core.http.ServerWebSocket fetch(long amount) { delegate.fetch(amount); return this; } public io.vertx.rxjava.core.http.ServerWebSocket endHandler(Handler<Void> endHandler) { delegate.endHandler(endHandler); return this; } public io.vertx.rxjava.core.http.ServerWebSocket write(io.vertx.rxjava.core.buffer.Buffer data) { delegate.write(data.getDelegate()); return this; } public io.vertx.rxjava.core.http.ServerWebSocket write(io.vertx.rxjava.core.buffer.Buffer data, Handler<AsyncResult<Void>> handler) { delegate.write(data.getDelegate(), handler); return this; } @Deprecated() public Observable<Void> writeObservable(io.vertx.rxjava.core.buffer.Buffer data) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); write(data, handler.toHandler()); return handler; } public Single<Void> rxWrite(io.vertx.rxjava.core.buffer.Buffer data) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { write(data, fut); })); } public io.vertx.rxjava.core.http.ServerWebSocket setWriteQueueMaxSize(int maxSize) { delegate.setWriteQueueMaxSize(maxSize); return this; } public io.vertx.rxjava.core.http.ServerWebSocket drainHandler(Handler<Void> handler) { delegate.drainHandler(handler); return this; } public io.vertx.rxjava.core.http.ServerWebSocket writeFrame(io.vertx.rxjava.core.http.WebSocketFrame frame) { delegate.writeFrame(frame.getDelegate()); return this; } public io.vertx.rxjava.core.http.ServerWebSocket writeFrame(io.vertx.rxjava.core.http.WebSocketFrame frame, Handler<AsyncResult<Void>> handler) { delegate.writeFrame(frame.getDelegate(), handler); return this; } @Deprecated() public Observable<Void> writeFrameObservable(io.vertx.rxjava.core.http.WebSocketFrame frame) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); writeFrame(frame, handler.toHandler()); return handler; } public Single<Void> rxWriteFrame(io.vertx.rxjava.core.http.WebSocketFrame frame) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { writeFrame(frame, fut); })); } public io.vertx.rxjava.core.http.ServerWebSocket writeFinalTextFrame(String text) { delegate.writeFinalTextFrame(text); return this; } public io.vertx.rxjava.core.http.ServerWebSocket writeFinalTextFrame(String text, Handler<AsyncResult<Void>> handler) { delegate.writeFinalTextFrame(text, handler); return this; } @Deprecated() public Observable<Void> writeFinalTextFrameObservable(String text) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); writeFinalTextFrame(text, handler.toHandler()); return handler; } public Single<Void> rxWriteFinalTextFrame(String text) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { writeFinalTextFrame(text, fut); })); } public io.vertx.rxjava.core.http.ServerWebSocket writeFinalBinaryFrame(io.vertx.rxjava.core.buffer.Buffer data) { delegate.writeFinalBinaryFrame(data.getDelegate()); return this; } public io.vertx.rxjava.core.http.ServerWebSocket writeFinalBinaryFrame(io.vertx.rxjava.core.buffer.Buffer data, Handler<AsyncResult<Void>> handler) { delegate.writeFinalBinaryFrame(data.getDelegate(), handler); return this; } @Deprecated() public Observable<Void> writeFinalBinaryFrameObservable(io.vertx.rxjava.core.buffer.Buffer data) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); writeFinalBinaryFrame(data, handler.toHandler()); return handler; } public Single<Void> rxWriteFinalBinaryFrame(io.vertx.rxjava.core.buffer.Buffer data) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { writeFinalBinaryFrame(data, fut); })); } public io.vertx.rxjava.core.http.ServerWebSocket writeBinaryMessage(io.vertx.rxjava.core.buffer.Buffer data) { delegate.writeBinaryMessage(data.getDelegate()); return this; } public io.vertx.rxjava.core.http.ServerWebSocket writeBinaryMessage(io.vertx.rxjava.core.buffer.Buffer data, Handler<AsyncResult<Void>> handler) { delegate.writeBinaryMessage(data.getDelegate(), handler); return this; } @Deprecated() public Observable<Void> writeBinaryMessageObservable(io.vertx.rxjava.core.buffer.Buffer data) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); writeBinaryMessage(data, handler.toHandler()); return handler; } public Single<Void> rxWriteBinaryMessage(io.vertx.rxjava.core.buffer.Buffer data) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { writeBinaryMessage(data, fut); })); } public io.vertx.rxjava.core.http.ServerWebSocket writeTextMessage(String text) { delegate.writeTextMessage(text); return this; } public io.vertx.rxjava.core.http.ServerWebSocket writeTextMessage(String text, Handler<AsyncResult<Void>> handler) { delegate.writeTextMessage(text, handler); return this; } @Deprecated() public Observable<Void> writeTextMessageObservable(String text) { io.vertx.rx.java.ObservableFuture<Void> handler = io.vertx.rx.java.RxHelper.observableFuture(); writeTextMessage(text, handler.toHandler()); return handler; } public Single<Void> rxWriteTextMessage(String text) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { writeTextMessage(text, fut); })); } public io.vertx.rxjava.core.http.ServerWebSocket closeHandler(Handler<Void> handler) { delegate.closeHandler(handler); return this; } public io.vertx.rxjava.core.http.ServerWebSocket frameHandler(Handler<io.vertx.rxjava.core.http.WebSocketFrame> handler) { delegate.frameHandler(new Handler<io.vertx.core.http.WebSocketFrame>() { public void handle(io.vertx.core.http.WebSocketFrame event) { handler.handle(io.vertx.rxjava.core.http.WebSocketFrame.newInstance(event)); } }); return this; } public String uri() { String ret = delegate.uri(); return ret; }
Returns:the WebSocket handshake path.
/** * @return the WebSocket handshake path. */
public String path() { String ret = delegate.path(); return ret; }
Returns:the WebSocket handshake query string.
/** * @return the WebSocket handshake query string. */
public String query() { String ret = delegate.query(); return ret; }
Returns:the headers in the WebSocket handshake
/** * @return the headers in the WebSocket handshake */
public io.vertx.rxjava.core.MultiMap headers() { if (cached_2 != null) { return cached_2; } io.vertx.rxjava.core.MultiMap ret = io.vertx.rxjava.core.MultiMap.newInstance(delegate.headers()); cached_2 = ret; return ret; }
Accept the WebSocket and terminate the WebSocket handshake.

This method should be called from the WebSocket handler to explicitly accept the WebSocket and terminate the WebSocket handshake.
/** * Accept the WebSocket and terminate the WebSocket handshake. * <p/> * This method should be called from the WebSocket handler to explicitly accept the WebSocket and * terminate the WebSocket handshake. */
public void accept() { delegate.accept(); }
Reject the WebSocket.

Calling this method from the WebSocket handler when it is first passed to you gives you the opportunity to reject the WebSocket, which will cause the WebSocket handshake to fail by returning a response code.

You might use this method, if for example you only want to accept WebSockets with a particular path.

/** * Reject the WebSocket. * <p> * Calling this method from the WebSocket handler when it is first passed to you gives you the opportunity to reject * the WebSocket, which will cause the WebSocket handshake to fail by returning * a response code. * <p> * You might use this method, if for example you only want to accept WebSockets with a particular path. */
public void reject() { delegate.reject(); }
Like reject but with a status.
Params:
  • status –
/** * Like {@link io.vertx.rxjava.core.http.ServerWebSocket#reject} but with a <code>status</code>. * @param status */
public void reject(int status) { delegate.reject(status); }
Set an asynchronous result for the handshake, upon completion of the specified future, the WebSocket will either be
  • accepted when the future succeeds with the HTTP status code
  • rejected when the future is succeeds with an HTTP status code different than
  • rejected when the future fails with the HTTP status code 500
The provided future might be completed by the WebSocket itself, e.g calling the close method will try to accept the handshake and close the WebSocket afterward. Thus it is advised to try to complete the future with or .

This method should be called from the WebSocket handler to explicitly set an asynchronous handshake.

Calling this method will override the future completion handler.

Params:
  • future – the future to complete with
/** * Set an asynchronous result for the handshake, upon completion of the specified <code>future</code>, the * WebSocket will either be * * <ul> * <li>accepted when the <code>future</code> succeeds with the HTTP status code</li> * <li>rejected when the <code>future</code> is succeeds with an HTTP status code different than </li> * <li>rejected when the <code>future</code> fails with the HTTP status code <code>500</code></li> * </ul> * * The provided future might be completed by the WebSocket itself, e.g calling the {@link io.vertx.rxjava.core.http.ServerWebSocket#close} method * will try to accept the handshake and close the WebSocket afterward. Thus it is advised to try to complete * the <code>future</code> with or . * <p> * This method should be called from the WebSocket handler to explicitly set an asynchronous handshake. * <p> * Calling this method will override the <code>future</code> completion handler. * @param future the future to complete with */
public void setHandshake(io.vertx.rxjava.core.Promise<Integer> future) { delegate.setHandshake(future.getDelegate()); }

The WebSocket handshake will be accepted when it hasn't yet been settled or when an asynchronous handshake is in progress.

/** * * * <p> * The WebSocket handshake will be accepted when it hasn't yet been settled or when an asynchronous handshake * is in progress. */
public void close() { delegate.close(); }
Returns:SSLSession associated with the underlying socket. Returns null if connection is not SSL.
/** * @return SSLSession associated with the underlying socket. Returns null if connection is not SSL. */
public SSLSession sslSession() { SSLSession ret = delegate.sslSession(); return ret; } private io.vertx.rxjava.core.net.SocketAddress cached_0; private io.vertx.rxjava.core.net.SocketAddress cached_1; private io.vertx.rxjava.core.MultiMap cached_2; public static ServerWebSocket newInstance(io.vertx.core.http.ServerWebSocket arg) { return arg != null ? new ServerWebSocket(arg) : null; } }