Class QuicClient

java.lang.Object
io.vertx.rxjava3.core.net.QuicEndpoint
io.vertx.rxjava3.core.net.QuicClient
All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate, Measured

public class QuicClient extends QuicEndpoint implements io.vertx.lang.rx.RxDelegate
A Quic client.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

  • Field Details

    • __TYPE_ARG

      public static final io.vertx.lang.rx.TypeArg<QuicClient> __TYPE_ARG
  • Constructor Details

    • QuicClient

      public QuicClient(QuicClient delegate)
    • QuicClient

      public QuicClient(Object delegate)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class QuicEndpoint
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class QuicEndpoint
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class QuicEndpoint
    • getDelegate

      public QuicClient getDelegate()
      Specified by:
      getDelegate in interface Measured
      Specified by:
      getDelegate in interface io.vertx.lang.rx.RxDelegate
      Overrides:
      getDelegate in class QuicEndpoint
    • isMetricsEnabled

      public boolean isMetricsEnabled()
      Whether the metrics are enabled for this measured object
      Specified by:
      isMetricsEnabled in interface Measured
      Overrides:
      isMetricsEnabled in class QuicEndpoint
      Returns:
      true if metrics are enabled
    • connect

      public Single<QuicConnection> connect(int port, String host)
      Connect to a Quic server at the specific port and host.
      Parameters:
      port - the port
      host - the host
      Returns:
      a Quic connection as a future
    • rxConnect

      public Single<QuicConnection> rxConnect(int port, String host)
      Connect to a Quic server at the specific port and host.
      Parameters:
      port - the port
      host - the host
      Returns:
      a Quic connection as a future
    • connect

      public Single<QuicConnection> connect(int port, String host, QuicConnectOptions options)
      Connect to a Quic server at the specific port and host, with specific options.
      Parameters:
      port - the port
      host - the host
      options -
      Returns:
      a Quic connection as a future
    • rxConnect

      public Single<QuicConnection> rxConnect(int port, String host, QuicConnectOptions options)
      Connect to a Quic server at the specific port and host, with specific options.
      Parameters:
      port - the port
      host - the host
      options -
      Returns:
      a Quic connection as a future
    • connect

      public Single<QuicConnection> connect(SocketAddress address)
      Connect to a Quic server.
      Parameters:
      address - the server address
      Returns:
      a Quic connection as a future
    • rxConnect

      public Single<QuicConnection> rxConnect(SocketAddress address)
      Connect to a Quic server.
      Parameters:
      address - the server address
      Returns:
      a Quic connection as a future
    • connect

      public Single<QuicConnection> connect(SocketAddress address, QuicConnectOptions options)
      Connect to a Quic server with specific options.
      Parameters:
      address - the server address
      options - the connect options
      Returns:
      a Quic connection as a future
    • rxConnect

      public Single<QuicConnection> rxConnect(SocketAddress address, QuicConnectOptions options)
      Connect to a Quic server with specific options.
      Parameters:
      address - the server address
      options - the connect options
      Returns:
      a Quic connection as a future
    • newInstance

      public static QuicClient newInstance(QuicClient arg)