/*
 * 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.reactivex.core.net;

import io.vertx.reactivex.RxHelper;
import io.vertx.reactivex.ObservableHelper;
import io.vertx.reactivex.FlowableHelper;
import io.vertx.reactivex.impl.AsyncResultMaybe;
import io.vertx.reactivex.impl.AsyncResultSingle;
import io.vertx.reactivex.impl.AsyncResultCompletable;
import io.vertx.reactivex.WriteStreamObserver;
import io.vertx.reactivex.WriteStreamSubscriber;
import java.util.Map;
import java.util.Set;
import java.util.List;
import java.util.Iterator;
import java.util.function.Function;
import java.util.stream.Collectors;
import io.vertx.core.Handler;
import io.vertx.core.AsyncResult;
import io.vertx.core.json.JsonObject;
import io.vertx.core.json.JsonArray;
import io.vertx.lang.rx.RxGen;
import io.vertx.lang.rx.TypeArg;
import io.vertx.lang.rx.MappingIterator;

Represents a socket-like interface to a TCP connection on either the client or the server side.

Instances of this class are created on the client side by an NetClient when a connection to a server is made, or on the server side by a NetServer when a server accepts a connection.

It implements both and so it can be used with Pipe to pipe data with flow control.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * Represents a socket-like interface to a TCP connection on either the * client or the server side. * <p> * Instances of this class are created on the client side by an {@link io.vertx.reactivex.core.net.NetClient} * when a connection to a server is made, or on the server side by a {@link io.vertx.reactivex.core.net.NetServer} * when a server accepts a connection. * <p> * It implements both and so it can be used with * {@link io.vertx.reactivex.core.streams.Pipe} to pipe data with flow control. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.core.net.NetSocket original} non RX-ified interface using Vert.x codegen. */
@RxGen(io.vertx.core.net.NetSocket.class) public class NetSocket implements io.vertx.reactivex.core.streams.ReadStream<io.vertx.reactivex.core.buffer.Buffer>, io.vertx.reactivex.core.streams.WriteStream<io.vertx.reactivex.core.buffer.Buffer> { @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; NetSocket that = (NetSocket) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final TypeArg<NetSocket> __TYPE_ARG = new TypeArg<>( obj -> new NetSocket((io.vertx.core.net.NetSocket) obj), NetSocket::getDelegate ); private final io.vertx.core.net.NetSocket delegate; public NetSocket(io.vertx.core.net.NetSocket delegate) { this.delegate = delegate; } public NetSocket(Object delegate) { this.delegate = (io.vertx.core.net.NetSocket)delegate; } public io.vertx.core.net.NetSocket getDelegate() { return delegate; } private io.reactivex.Observable<io.vertx.reactivex.core.buffer.Buffer> observable; private io.reactivex.Flowable<io.vertx.reactivex.core.buffer.Buffer> flowable; public synchronized io.reactivex.Observable<io.vertx.reactivex.core.buffer.Buffer> toObservable() { if (observable == null) { Function<io.vertx.core.buffer.Buffer, io.vertx.reactivex.core.buffer.Buffer> conv = io.vertx.reactivex.core.buffer.Buffer::newInstance; observable = ObservableHelper.toObservable(delegate, conv); } return observable; } public synchronized io.reactivex.Flowable<io.vertx.reactivex.core.buffer.Buffer> toFlowable() { if (flowable == null) { Function<io.vertx.core.buffer.Buffer, io.vertx.reactivex.core.buffer.Buffer> conv = io.vertx.reactivex.core.buffer.Buffer::newInstance; flowable = FlowableHelper.toFlowable(delegate, conv); } return flowable; } private WriteStreamObserver<io.vertx.reactivex.core.buffer.Buffer> observer; private WriteStreamSubscriber<io.vertx.reactivex.core.buffer.Buffer> subscriber; public synchronized WriteStreamObserver<io.vertx.reactivex.core.buffer.Buffer> toObserver() { if (observer == null) { Function<io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.buffer.Buffer> conv = io.vertx.reactivex.core.buffer.Buffer::getDelegate; observer = RxHelper.toObserver(getDelegate(), conv); } return observer; } public synchronized WriteStreamSubscriber<io.vertx.reactivex.core.buffer.Buffer> toSubscriber() { if (subscriber == null) { Function<io.vertx.reactivex.core.buffer.Buffer, io.vertx.core.buffer.Buffer> conv = io.vertx.reactivex.core.buffer.Buffer::getDelegate; subscriber = RxHelper.toSubscriber(getDelegate(), conv); } return subscriber; } private static final TypeArg<io.vertx.reactivex.core.buffer.Buffer> TYPE_ARG_0 = new TypeArg<io.vertx.reactivex.core.buffer.Buffer>(o1 -> io.vertx.reactivex.core.buffer.Buffer.newInstance((io.vertx.core.buffer.Buffer)o1), o1 -> o1.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.reactivex.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 –
/** * Same as but with an <code>handler</code> called when the operation completes * @param data */
public void end(io.vertx.reactivex.core.buffer.Buffer data) { end(data, ar -> { }); }
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 io.reactivex.Completable rxEnd(io.vertx.reactivex.core.buffer.Buffer data) { return AsyncResultCompletable.toCompletable($handler -> { end(data, $handler); }); }
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.reactivex.core.net.NetSocket#setWriteQueueMaxSize} * @return <code>true</code> 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.reactivex.core.streams.Pipe<io.vertx.reactivex.core.buffer.Buffer> pipe() { io.vertx.reactivex.core.streams.Pipe<io.vertx.reactivex.core.buffer.Buffer> ret = io.vertx.reactivex.core.streams.Pipe.newInstance((io.vertx.core.streams.Pipe)delegate.pipe(), TYPE_ARG_0); return ret; }
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.reactivex.core.streams.WriteStream<io.vertx.reactivex.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
/** * 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 */
public void pipeTo(io.vertx.reactivex.core.streams.WriteStream<io.vertx.reactivex.core.buffer.Buffer> dst) { pipeTo(dst, ar -> { }); }
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 io.reactivex.Completable rxPipeTo(io.vertx.reactivex.core.streams.WriteStream<io.vertx.reactivex.core.buffer.Buffer> dst) { return AsyncResultCompletable.toCompletable($handler -> { pipeTo(dst, $handler); }); } public io.vertx.reactivex.core.net.NetSocket exceptionHandler(Handler<java.lang.Throwable> handler) { delegate.exceptionHandler(handler); return this; } public io.vertx.reactivex.core.net.NetSocket handler(Handler<io.vertx.reactivex.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.reactivex.core.buffer.Buffer.newInstance((io.vertx.core.buffer.Buffer)event)); } }); return this; } public io.vertx.reactivex.core.net.NetSocket pause() { delegate.pause(); return this; } public io.vertx.reactivex.core.net.NetSocket resume() { delegate.resume(); return this; } public io.vertx.reactivex.core.net.NetSocket fetch(long amount) { delegate.fetch(amount); return this; }

This handler might be called after the close handler when the socket is paused and there are still buffers to deliver.

Params:
  • endHandler –
Returns:
/** * * <p> * This handler might be called after the close handler when the socket is paused and there are still * buffers to deliver. * @param endHandler * @return */
public io.vertx.reactivex.core.net.NetSocket endHandler(Handler<Void> endHandler) { delegate.endHandler(endHandler); return this; } public io.vertx.reactivex.core.net.NetSocket setWriteQueueMaxSize(int maxSize) { delegate.setWriteQueueMaxSize(maxSize); return this; } public io.vertx.reactivex.core.net.NetSocket drainHandler(Handler<Void> handler) { delegate.drainHandler(handler); return this; }
When a NetSocket is created it automatically registers an event handler with the event bus, the ID of that handler is given by writeHandlerID.

Given this ID, a different event loop can send a buffer 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 connections which are owned by different event loops.

Returns:the write handler ID
/** * When a <code>NetSocket</code> is created it automatically registers an event handler with the event bus, the ID of that * handler is given by <code>writeHandlerID</code>. * <p> * Given this ID, a different event loop can send a buffer 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 connections which are owned by different event loops. * @return the write handler ID */
public String writeHandlerID() { String ret = delegate.writeHandlerID(); return ret; }
Same as write but with an handler called when the operation completes
Params:
  • str –
  • handler –
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#write} but with an <code>handler</code> called when the operation completes * @param str * @param handler */
public void write(String str, Handler<AsyncResult<Void>> handler) { delegate.write(str, handler); }
Same as write but with an handler called when the operation completes
Params:
  • str –
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#write} but with an <code>handler</code> called when the operation completes * @param str */
public void write(String str) { write(str, ar -> { }); }
Same as write but with an handler called when the operation completes
Params:
  • str –
Returns:
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#write} but with an <code>handler</code> called when the operation completes * @param str * @return */
public io.reactivex.Completable rxWrite(String str) { return AsyncResultCompletable.toCompletable($handler -> { write(str, $handler); }); }
Same as write but with an handler called when the operation completes
Params:
  • str –
  • enc –
  • handler –
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#write} but with an <code>handler</code> called when the operation completes * @param str * @param enc * @param handler */
public void write(String str, String enc, Handler<AsyncResult<Void>> handler) { delegate.write(str, enc, handler); }
Same as write but with an handler called when the operation completes
Params:
  • str –
  • enc –
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#write} but with an <code>handler</code> called when the operation completes * @param str * @param enc */
public void write(String str, String enc) { write(str, enc, ar -> { }); }
Same as write but with an handler called when the operation completes
Params:
  • str –
  • enc –
Returns:
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#write} but with an <code>handler</code> called when the operation completes * @param str * @param enc * @return */
public io.reactivex.Completable rxWrite(String str, String enc) { return AsyncResultCompletable.toCompletable($handler -> { write(str, enc, $handler); }); }
Like WriteStream.write but with an handler called when the message has been written or failed to be written.
Params:
  • message –
  • handler –
/** * Like {@link io.vertx.reactivex.core.streams.WriteStream#write} but with an <code>handler</code> called when the message has been written * or failed to be written. * @param message * @param handler */
public void write(io.vertx.reactivex.core.buffer.Buffer message, Handler<AsyncResult<Void>> handler) { delegate.write(message.getDelegate(), handler); }
Like WriteStream.write but with an handler called when the message has been written or failed to be written.
Params:
  • message –
/** * Like {@link io.vertx.reactivex.core.streams.WriteStream#write} but with an <code>handler</code> called when the message has been written * or failed to be written. * @param message */
public void write(io.vertx.reactivex.core.buffer.Buffer message) { write(message, ar -> { }); }
Like WriteStream.write but with an handler called when the message has been written or failed to be written.
Params:
  • message –
Returns:
/** * Like {@link io.vertx.reactivex.core.streams.WriteStream#write} but with an <code>handler</code> called when the message has been written * or failed to be written. * @param message * @return */
public io.reactivex.Completable rxWrite(io.vertx.reactivex.core.buffer.Buffer message) { return AsyncResultCompletable.toCompletable($handler -> { write(message, $handler); }); }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
  • resultHandler – handler
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @param resultHandler handler * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket sendFile(String filename, Handler<AsyncResult<Void>> resultHandler) { delegate.sendFile(filename, resultHandler); return this; }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket sendFile(String filename) { return sendFile(filename, ar -> { }); }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @return a reference to this, so the API can be used fluently */
public io.reactivex.Completable rxSendFile(String filename) { return AsyncResultCompletable.toCompletable($handler -> { sendFile(filename, $handler); }); }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
  • offset – offset
  • resultHandler – handler
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @param offset offset * @param resultHandler handler * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket sendFile(String filename, long offset, Handler<AsyncResult<Void>> resultHandler) { delegate.sendFile(filename, offset, resultHandler); return this; }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
  • offset – offset
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @param offset offset * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket sendFile(String filename, long offset) { return sendFile(filename, offset, ar -> { }); }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
  • offset – offset
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @param offset offset * @return a reference to this, so the API can be used fluently */
public io.reactivex.Completable rxSendFile(String filename, long offset) { return AsyncResultCompletable.toCompletable($handler -> { sendFile(filename, offset, $handler); }); }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
  • offset – offset
  • length – length
  • resultHandler – handler
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @param offset offset * @param length length * @param resultHandler handler * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket sendFile(String filename, long offset, long length, Handler<AsyncResult<Void>> resultHandler) { delegate.sendFile(filename, offset, length, resultHandler); return this; }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
  • offset – offset
  • length – length
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @param offset offset * @param length length * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket sendFile(String filename, long offset, long length) { return sendFile(filename, offset, length, ar -> { }); }
Same as sendFile but also takes a handler that will be called when the send has completed or a failure has occurred
Params:
  • filename – file name of the file to send
  • offset – offset
  • length – length
Returns:a reference to this, so the API can be used fluently
/** * Same as {@link io.vertx.reactivex.core.net.NetSocket#sendFile} but also takes a handler that will be called when the send has completed or * a failure has occurred * @param filename file name of the file to send * @param offset offset * @param length length * @return a reference to this, so the API can be used fluently */
public io.reactivex.Completable rxSendFile(String filename, long offset, long length) { return AsyncResultCompletable.toCompletable($handler -> { sendFile(filename, offset, length, $handler); }); }
Returns:the remote address for this connection, possibly null (e.g a server bound on a domain socket). If useProxyProtocol is set to true, the address returned will be of the actual connecting client.
/** * @return the remote address for this connection, possibly <code>null</code> (e.g a server bound on a domain socket). If <code>useProxyProtocol</code> is set to <code>true</code>, the address returned will be of the actual connecting client. */
public io.vertx.reactivex.core.net.SocketAddress remoteAddress() { if (cached_0 != null) { return cached_0; } io.vertx.reactivex.core.net.SocketAddress ret = io.vertx.reactivex.core.net.SocketAddress.newInstance((io.vertx.core.net.SocketAddress)delegate.remoteAddress()); cached_0 = ret; return ret; }
Returns:the local address for this connection, possibly null (e.g a server bound on a domain socket) If useProxyProtocol is set to true, the address returned will be of the proxy.
/** * @return the local address for this connection, possibly <code>null</code> (e.g a server bound on a domain socket) If <code>useProxyProtocol</code> is set to <code>true</code>, the address returned will be of the proxy. */
public io.vertx.reactivex.core.net.SocketAddress localAddress() { if (cached_1 != null) { return cached_1; } io.vertx.reactivex.core.net.SocketAddress ret = io.vertx.reactivex.core.net.SocketAddress.newInstance((io.vertx.core.net.SocketAddress)delegate.localAddress()); cached_1 = ret; return ret; }
Calls end.
Params:
  • handler –
/** * Calls {@link io.vertx.reactivex.core.net.NetSocket#end}. * @param handler */
public void end(Handler<AsyncResult<Void>> handler) { delegate.end(handler); }
Calls end.
/** * Calls {@link io.vertx.reactivex.core.net.NetSocket#end}. */
public void end() { end(ar -> { }); }
Calls end.
Returns:
/** * Calls {@link io.vertx.reactivex.core.net.NetSocket#end}. * @return */
public io.reactivex.Completable rxEnd() { return AsyncResultCompletable.toCompletable($handler -> { end($handler); }); }
Close the NetSocket and notify the handler when the operation completes.
Params:
  • handler –
/** * Close the NetSocket and notify the <code>handler</code> when the operation completes. * @param handler */
public void close(Handler<AsyncResult<Void>> handler) { delegate.close(handler); }
Close the NetSocket and notify the handler when the operation completes.
/** * Close the NetSocket and notify the <code>handler</code> when the operation completes. */
public void close() { close(ar -> { }); }
Close the NetSocket and notify the handler when the operation completes.
Returns:
/** * Close the NetSocket and notify the <code>handler</code> when the operation completes. * @return */
public io.reactivex.Completable rxClose() { return AsyncResultCompletable.toCompletable($handler -> { close($handler); }); }
Set a handler that will be called when the NetSocket is closed
Params:
  • handler – the handler
Returns:a reference to this, so the API can be used fluently
/** * Set a handler that will be called when the NetSocket is closed * @param handler the handler * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket closeHandler(Handler<Void> handler) { delegate.closeHandler(handler); return this; }
Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured.
Params:
  • handler – the handler will be notified when it's upgraded
Returns:a reference to this, so the API can be used fluently
/** * Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured. * @param handler the handler will be notified when it's upgraded * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket upgradeToSsl(Handler<AsyncResult<Void>> handler) { delegate.upgradeToSsl(handler); return this; }
Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured.
Returns:a reference to this, so the API can be used fluently
/** * Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured. * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket upgradeToSsl() { return upgradeToSsl(ar -> { }); }
Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured.
Returns:a reference to this, so the API can be used fluently
/** * Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured. * @return a reference to this, so the API can be used fluently */
public io.reactivex.Completable rxUpgradeToSsl() { return AsyncResultCompletable.toCompletable($handler -> { upgradeToSsl($handler); }); }
Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured.
Params:
  • serverName – the server name
  • handler – the handler will be notified when it's upgraded
Returns:a reference to this, so the API can be used fluently
/** * Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured. * @param serverName the server name * @param handler the handler will be notified when it's upgraded * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket upgradeToSsl(String serverName, Handler<AsyncResult<Void>> handler) { delegate.upgradeToSsl(serverName, handler); return this; }
Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured.
Params:
  • serverName – the server name
Returns:a reference to this, so the API can be used fluently
/** * Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured. * @param serverName the server name * @return a reference to this, so the API can be used fluently */
public io.vertx.reactivex.core.net.NetSocket upgradeToSsl(String serverName) { return upgradeToSsl(serverName, ar -> { }); }
Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured.
Params:
  • serverName – the server name
Returns:a reference to this, so the API can be used fluently
/** * Upgrade channel to use SSL/TLS. Be aware that for this to work SSL must be configured. * @param serverName the server name * @return a reference to this, so the API can be used fluently */
public io.reactivex.Completable rxUpgradeToSsl(String serverName) { return AsyncResultCompletable.toCompletable($handler -> { upgradeToSsl(serverName, $handler); }); }
Returns:true if this NetSocket is encrypted via SSL/TLS.
/** * @return true if this {@link io.vertx.reactivex.core.net.NetSocket} is encrypted via SSL/TLS. */
public boolean isSsl() { boolean ret = delegate.isSsl(); return ret; }
Returns the SNI server name presented during the SSL handshake by the client.
Returns:the indicated server name
/** * Returns the SNI server name presented during the SSL handshake by the client. * @return the indicated server name */
public String indicatedServerName() { String ret = delegate.indicatedServerName(); return ret; }
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 javax.net.ssl.SSLSession sslSession() { javax.net.ssl.SSLSession ret = delegate.sslSession(); return ret; } private io.vertx.reactivex.core.net.SocketAddress cached_0; private io.vertx.reactivex.core.net.SocketAddress cached_1; public static NetSocket newInstance(io.vertx.core.net.NetSocket arg) { return arg != null ? new NetSocket(arg) : null; } }