Uses of Interface
io.vertx.core.net.SocketAddress
Packages that use SocketAddress
Package
Description
-
Uses of SocketAddress in io.vertx.core.datagram
Methods in io.vertx.core.datagram that return SocketAddressModifier and TypeMethodDescriptionDatagramSocket.localAddress()Return theSocketAddressto which thisDatagramSocketis bound.DatagramPacket.sender()Returns theSocketAddressof the sender that sent thisDatagramPacket. -
Uses of SocketAddress in io.vertx.core.http
Fields in io.vertx.core.http declared as SocketAddressModifier and TypeFieldDescriptionstatic final SocketAddressHttpConnectOptions.DEFAULT_SERVERThe default value for server method =nullstatic final SocketAddressRequestOptions.DEFAULT_SERVERThe default value for server method =nullMethods in io.vertx.core.http that return SocketAddressModifier and TypeMethodDescriptionHttpConnection.localAddress()HttpConnection.localAddress(boolean real) default SocketAddressHttpServerRequest.localAddress()ServerWebSocketHandshake.localAddress()WebSocketBase.localAddress()HttpConnection.remoteAddress()HttpConnection.remoteAddress(boolean real) default SocketAddressHttpServerRequest.remoteAddress()ServerWebSocketHandshake.remoteAddress()WebSocketBase.remoteAddress()Methods in io.vertx.core.http with parameters of type SocketAddressModifier and TypeMethodDescriptionHttpServer.listen(SocketAddress address) Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed). -
Uses of SocketAddress in io.vertx.core.net
Methods in io.vertx.core.net that return SocketAddressModifier and TypeMethodDescriptionstatic SocketAddressSocketAddress.domainSocketAddress(String path) Create a domain socket address from apath.static SocketAddressSocketAddress.fromJson(JsonObject json) QuicClientConfig.getLocalAddress()TcpClientConfig.getLocalAddress()ConnectOptions.getRemoteAddress()Get the remote address to connect to, if none is providedConnectOptions.host/ConnectOptions.portwille be used.static SocketAddressSocketAddress.inetSocketAddress(int port, String host) Create an inet socket address,hostmust be nonnullandportmust be between0and65536.static SocketAddressSocketAddress.inetSocketAddress(InetSocketAddress address) Create a inet socket address from a JavaInetSocketAddress.NetSocket.localAddress()NetSocket.localAddress(boolean real) QuicConnection.localAddress()NetSocket.remoteAddress()NetSocket.remoteAddress(boolean real) QuicConnection.remoteAddress()static SocketAddressSocketAddress.sharedRandomPort(int id, String host) Create an inet socket address that binds to a shared random port identified byid.Methods in io.vertx.core.net that return types with arguments of type SocketAddressModifier and TypeMethodDescriptionQuicEndpoint.bind(SocketAddress address) Binds a UDP socket at the givenaddress.QuicServer.listen()Start listening on theportandhostas configured in theQuicServerConfigused when creating the server.default Future<SocketAddress> QuicServer.listen(int port) Start listening on the specified port and host "0.0.0.0".default Future<SocketAddress> Start listening on the specifiedportandhost.default Future<SocketAddress> QuicServer.listen(SocketAddress localAddress) Start listening on the specified local address.Methods in io.vertx.core.net with parameters of type SocketAddressModifier and TypeMethodDescriptionQuicEndpoint.bind(SocketAddress address) Binds a UDP socket at the givenaddress.NetClient.connect(SocketAddress remoteAddress) Open a connection to a server at the specificremoteAddress.NetClient.connect(SocketAddress remoteAddress, String serverName) Open a connection to a server at the specificremoteAddress.default Future<QuicConnection> QuicClient.connect(SocketAddress address) Connect to a Quic server.QuicClient.connect(SocketAddress address, QuicConnectOptions options) Connect to a Quic server with specificoptions.NetServer.listen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theNetServerOptionsused when creating the server.default Future<SocketAddress> QuicServer.listen(SocketAddress localAddress) Start listening on the specified local address.QuicClientConfig.setLocalAddress(SocketAddress localAddress) Set the local address to bind for network connections.TcpClientConfig.setLocalAddress(SocketAddress localAddress) Set the local address to bind for network connections.ConnectOptions.setRemoteAddress(SocketAddress remoteAddress) Set the remote address to be used by the client connection.Method parameters in io.vertx.core.net with type arguments of type SocketAddressModifier and TypeMethodDescriptionstatic <A extends Address>
AddressResolver<A> AddressResolver.mappingResolver(Function<A, List<SocketAddress>> mapping) A simple synchronous resolver for demo and testing purposes. -
Uses of SocketAddress in io.vertx.core.net.endpoint
Methods in io.vertx.core.net.endpoint that return SocketAddress -
Uses of SocketAddress in io.vertx.core.spi.endpoint
Methods in io.vertx.core.spi.endpoint that return SocketAddressModifier and TypeMethodDescriptionReturns the socket address of a givenserver. -
Uses of SocketAddress in io.vertx.core.spi.metrics
Methods in io.vertx.core.spi.metrics with parameters of type SocketAddressModifier and TypeMethodDescriptiondefault voidNetworkMetrics.bytesRead(C connectionMetric, SocketAddress remoteAddress, long numberOfBytes) Called when bytes have been readdefault voidNetworkMetrics.bytesWritten(C connectionMetric, SocketAddress remoteAddress, long numberOfBytes) Called when bytes have been writtendefault CTransportMetrics.connected(SocketAddress remoteAddress, String remoteName) Called when a client has connected, which is applicable for connections.default ClientMetrics<?, ?, ?> VertxMetrics.createClientMetrics(SocketAddress remoteAddress, String type, String namespace) Provides the client metrics SPI when a client has been created.default ClientMetrics<R, HttpRequest, HttpResponse> HttpClientMetrics.createEndpointMetrics(SocketAddress remoteAddress, int maxPoolSize) Provides metrics for a particular endpointdefault HttpServerMetrics<?, ?> VertxMetrics.createHttpServerMetrics(HttpServerConfig config, SocketAddress tcpLocalAddress, SocketAddress udpLocalAddress) Provides the http server metrics SPI when an http server is created.default TransportMetrics<?> VertxMetrics.createQuicEndpointMetrics(QuicEndpointConfig config, String protocol, SocketAddress localAddress) Provides the quic endpoint metrics SPI when a quic endpoint is created.default TransportMetrics<?> VertxMetrics.createTcpServerMetrics(TcpServerConfig config, String protocol, SocketAddress localAddress) Provides the net server metrics SPI when a net server is created.default voidTransportMetrics.disconnected(C connectionMetric, SocketAddress remoteAddress) Called when a client has disconnected, which is applicable for connections.default voidNetworkMetrics.exceptionOccurred(C connectionMetric, SocketAddress remoteAddress, Throwable err) Called when exceptions occur for a specific connection.default voidDatagramSocketMetrics.listening(String localName, SocketAddress localAddress) Called when a socket is listening.default RHttpServerMetrics.requestBegin(SocketAddress remoteAddress, HttpRequest request) Called when an http server request begins.default RHttpServerMetrics.responsePushed(SocketAddress remoteAddress, HttpMethod method, String uri, HttpResponse response) Called when an http server response is pushed. -
Uses of SocketAddress in io.vertx.core.spi.observability
Methods in io.vertx.core.spi.observability that return SocketAddress -
Uses of SocketAddress in io.vertx.core.spi.transport
Methods in io.vertx.core.spi.transport that return SocketAddressMethods in io.vertx.core.spi.transport with parameters of type SocketAddress -
Uses of SocketAddress in io.vertx.ext.auth.audit
Methods in io.vertx.ext.auth.audit with parameters of type SocketAddressModifier and TypeMethodDescriptionSecurityAudit.destination(SocketAddress address) SecurityAudit.source(SocketAddress address) -
Uses of SocketAddress in io.vertx.ext.eventbus.bridge.tcp
Methods in io.vertx.ext.eventbus.bridge.tcp with parameters of type SocketAddressModifier and TypeMethodDescriptiondefault Future<TcpEventBusBridge> TcpEventBusBridge.listen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theNetServerOptionsused when creating the server. -
Uses of SocketAddress in io.vertx.ext.web.client
Methods in io.vertx.ext.web.client with parameters of type SocketAddressModifier and TypeMethodDescriptionWebClient.request(HttpMethod method, SocketAddress serverAddress, int port, String host, UriTemplate requestURI) LikeWebClient.request(HttpMethod, int, String, UriTemplate)using theserverAddressparameter to connect to the server instead of theportandhostparameters.WebClient.request(HttpMethod method, SocketAddress serverAddress, int port, String host, String requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of theportandhostparameters.WebClient.request(HttpMethod method, SocketAddress serverAddress, RequestOptions options) Deprecated.WebClient.request(HttpMethod method, SocketAddress serverAddress, UriTemplate requestURI) LikeWebClient.request(HttpMethod, UriTemplate)using theserverAddressparameter to connect to the server instead of the default port and default host.WebClient.request(HttpMethod method, SocketAddress serverAddress, String requestURI) LikeWebClient.request(HttpMethod, String)using theserverAddressparameter to connect to the server instead of the default port and default host.WebClient.request(HttpMethod method, SocketAddress serverAddress, String host, UriTemplate requestURI) LikeWebClient.request(HttpMethod, String, UriTemplate)using theserverAddressparameter to connect to the server instead of the default port andhostparameter.WebClient.request(HttpMethod method, SocketAddress serverAddress, String host, String requestURI) LikeWebClient.request(HttpMethod, String, String)using theserverAddressparameter to connect to the server instead of the default port andhostparameter.WebClient.requestAbs(HttpMethod method, SocketAddress serverAddress, UriTemplate absoluteURI) LikeWebClient.requestAbs(HttpMethod, UriTemplate)using theserverAddressparameter to connect to the server instead of theabsoluteURIparameter.WebClient.requestAbs(HttpMethod method, SocketAddress serverAddress, String absoluteURI) LikeWebClient.requestAbs(HttpMethod, String)using theserverAddressparameter to connect to the server instead of theabsoluteURIparameter. -
Uses of SocketAddress in io.vertx.ext.web.handler.sockjs
Methods in io.vertx.ext.web.handler.sockjs that return SocketAddressModifier and TypeMethodDescriptionSockJSSocket.localAddress()Return the local address for this socketSockJSSocket.remoteAddress()Return the remote address for this socket -
Uses of SocketAddress in io.vertx.grpc.event.v1alpha
Methods in io.vertx.grpc.event.v1alpha with parameters of type SocketAddressModifier and TypeMethodDescriptionstatic EventBusBridgeGrpcClientEventBusBridgeGrpcClient.create(GrpcClient client, SocketAddress host) Create and return a EventBusBridge gRPC service client.static EventBusBridgeGrpcClientEventBusBridgeGrpcClient.create(GrpcClient client, SocketAddress host, WireFormat wireFormat) Create and return a EventBusBridge gRPC service client. -
Uses of SocketAddress in io.vertx.grpcio.client
Constructors in io.vertx.grpcio.client with parameters of type SocketAddress -
Uses of SocketAddress in io.vertx.httpproxy
Methods in io.vertx.httpproxy with parameters of type SocketAddressModifier and TypeMethodDescriptionstatic OriginRequestProviderOriginRequestProvider.fixedAddress(SocketAddress address) Creates a simple provider for a fixedSocketAddress.default HttpProxyHttpProxy.origin(SocketAddress address) Set theSocketAddressof the origin.Method parameters in io.vertx.httpproxy with type arguments of type SocketAddressModifier and TypeMethodDescriptionstatic OriginRequestProviderOriginRequestProvider.selector(Function<ProxyContext, Future<SocketAddress>> selector) Creates a provider that selects the origin server based onProxyContext. -
Uses of SocketAddress in io.vertx.mqtt
Methods in io.vertx.mqtt that return SocketAddress -
Uses of SocketAddress in io.vertx.mysqlclient
Methods in io.vertx.mysqlclient that return SocketAddress -
Uses of SocketAddress in io.vertx.oracleclient
Methods in io.vertx.oracleclient that return SocketAddress -
Uses of SocketAddress in io.vertx.pgclient
Methods in io.vertx.pgclient that return SocketAddress -
Uses of SocketAddress in io.vertx.reactivex.core.datagram
Methods in io.vertx.reactivex.core.datagram that return SocketAddressModifier and TypeMethodDescriptionDatagramSocket.localAddress()Return theSocketAddressto which thisDatagramSocketis bound. -
Uses of SocketAddress in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http that return SocketAddressModifier and TypeMethodDescriptionClientWebSocket.localAddress()HttpConnection.localAddress()HttpConnection.localAddress(boolean real) HttpServerRequest.localAddress()ServerWebSocket.localAddress()ServerWebSocketHandshake.localAddress()WebSocket.localAddress()WebSocketBase.localAddress()ClientWebSocket.remoteAddress()HttpConnection.remoteAddress()HttpConnection.remoteAddress(boolean real) HttpServerRequest.remoteAddress()ServerWebSocket.remoteAddress()ServerWebSocketHandshake.remoteAddress()WebSocket.remoteAddress()WebSocketBase.remoteAddress()Methods in io.vertx.reactivex.core.http with parameters of type SocketAddressModifier and TypeMethodDescriptionHttpServer.listen(SocketAddress address) Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed).HttpServer.rxListen(SocketAddress address) Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed). -
Uses of SocketAddress in io.vertx.reactivex.core.net
Methods in io.vertx.reactivex.core.net that return SocketAddressModifier and TypeMethodDescriptionNetSocket.localAddress()NetSocket.localAddress(boolean real) QuicConnection.localAddress()NetSocket.remoteAddress()NetSocket.remoteAddress(boolean real) QuicConnection.remoteAddress()Methods in io.vertx.reactivex.core.net that return types with arguments of type SocketAddressModifier and TypeMethodDescriptionQuicEndpoint.bind(SocketAddress address) Binds a UDP socket at the givenaddress.QuicServer.listen()Start listening on theportandhostas configured in theQuicServerConfigused when creating the server.QuicServer.listen(int port) Start listening on the specified port and host "0.0.0.0".Start listening on the specifiedportandhost.QuicServer.listen(SocketAddress localAddress) Start listening on the specified local address.QuicEndpoint.rxBind(SocketAddress address) Binds a UDP socket at the givenaddress.QuicServer.rxListen()Start listening on theportandhostas configured in theQuicServerConfigused when creating the server.QuicServer.rxListen(int port) Start listening on the specified port and host "0.0.0.0".Start listening on the specifiedportandhost.QuicServer.rxListen(SocketAddress localAddress) Start listening on the specified local address.Methods in io.vertx.reactivex.core.net with parameters of type SocketAddressModifier and TypeMethodDescriptionQuicEndpoint.bind(SocketAddress address) Binds a UDP socket at the givenaddress.NetClient.connect(SocketAddress remoteAddress) Open a connection to a server at the specificremoteAddress.NetClient.connect(SocketAddress remoteAddress, String serverName) Open a connection to a server at the specificremoteAddress.QuicClient.connect(SocketAddress address) Connect to a Quic server.QuicClient.connect(SocketAddress address, QuicConnectOptions options) Connect to a Quic server with specificoptions.NetServer.listen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theNetServerOptionsused when creating the server.QuicServer.listen(SocketAddress localAddress) Start listening on the specified local address.QuicEndpoint.rxBind(SocketAddress address) Binds a UDP socket at the givenaddress.NetClient.rxConnect(SocketAddress remoteAddress) Open a connection to a server at the specificremoteAddress.NetClient.rxConnect(SocketAddress remoteAddress, String serverName) Open a connection to a server at the specificremoteAddress.QuicClient.rxConnect(SocketAddress address) Connect to a Quic server.QuicClient.rxConnect(SocketAddress address, QuicConnectOptions options) Connect to a Quic server with specificoptions.NetServer.rxListen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theNetServerOptionsused when creating the server.QuicServer.rxListen(SocketAddress localAddress) Start listening on the specified local address. -
Uses of SocketAddress in io.vertx.reactivex.core.net.endpoint
Methods in io.vertx.reactivex.core.net.endpoint that return SocketAddress -
Uses of SocketAddress in io.vertx.reactivex.ext.auth.audit
Methods in io.vertx.reactivex.ext.auth.audit with parameters of type SocketAddressModifier and TypeMethodDescriptionSecurityAudit.destination(SocketAddress address) SecurityAudit.source(SocketAddress address) -
Uses of SocketAddress in io.vertx.reactivex.ext.eventbus.bridge.tcp
Methods in io.vertx.reactivex.ext.eventbus.bridge.tcp with parameters of type SocketAddressModifier and TypeMethodDescriptionTcpEventBusBridge.listen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in the used when creating the server.TcpEventBusBridge.rxListen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in the used when creating the server. -
Uses of SocketAddress in io.vertx.reactivex.ext.web.client
Methods in io.vertx.reactivex.ext.web.client with parameters of type SocketAddressModifier and TypeMethodDescriptionWebClient.request(HttpMethod method, SocketAddress serverAddress, int port, String host, UriTemplate requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of theportandhostparameters.WebClient.request(HttpMethod method, SocketAddress serverAddress, int port, String host, String requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of theportandhostparameters.WebClient.request(HttpMethod method, SocketAddress serverAddress, RequestOptions options) Deprecated.WebClient.request(HttpMethod method, SocketAddress serverAddress, UriTemplate requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of the default port and default host.WebClient.request(HttpMethod method, SocketAddress serverAddress, String requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of the default port and default host.WebClient.request(HttpMethod method, SocketAddress serverAddress, String host, UriTemplate requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of the default port andhostparameter.WebClient.request(HttpMethod method, SocketAddress serverAddress, String host, String requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of the default port andhostparameter.WebClient.requestAbs(HttpMethod method, SocketAddress serverAddress, UriTemplate absoluteURI) LikeWebClient.requestAbs(HttpMethod, String)using theserverAddressparameter to connect to the server instead of theabsoluteURIparameter.WebClient.requestAbs(HttpMethod method, SocketAddress serverAddress, String absoluteURI) LikeWebClient.requestAbs(HttpMethod, String)using theserverAddressparameter to connect to the server instead of theabsoluteURIparameter. -
Uses of SocketAddress in io.vertx.reactivex.ext.web.handler.sockjs
Methods in io.vertx.reactivex.ext.web.handler.sockjs that return SocketAddressModifier and TypeMethodDescriptionSockJSSocket.localAddress()Return the local address for this socketSockJSSocket.remoteAddress()Return the remote address for this socket -
Uses of SocketAddress in io.vertx.reactivex.mqtt
Methods in io.vertx.reactivex.mqtt that return SocketAddress -
Uses of SocketAddress in io.vertx.rxjava3.core.datagram
Methods in io.vertx.rxjava3.core.datagram that return SocketAddressModifier and TypeMethodDescriptionDatagramSocket.localAddress()Return theSocketAddressto which thisDatagramSocketis bound. -
Uses of SocketAddress in io.vertx.rxjava3.core.http
Methods in io.vertx.rxjava3.core.http that return SocketAddressModifier and TypeMethodDescriptionClientWebSocket.localAddress()HttpConnection.localAddress()HttpConnection.localAddress(boolean real) HttpServerRequest.localAddress()ServerWebSocket.localAddress()ServerWebSocketHandshake.localAddress()WebSocket.localAddress()WebSocketBase.localAddress()ClientWebSocket.remoteAddress()HttpConnection.remoteAddress()HttpConnection.remoteAddress(boolean real) HttpServerRequest.remoteAddress()ServerWebSocket.remoteAddress()ServerWebSocketHandshake.remoteAddress()WebSocket.remoteAddress()WebSocketBase.remoteAddress()Methods in io.vertx.rxjava3.core.http with parameters of type SocketAddressModifier and TypeMethodDescriptionHttpServer.listen(SocketAddress address) Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed).HttpServer.rxListen(SocketAddress address) Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed). -
Uses of SocketAddress in io.vertx.rxjava3.core.net
Methods in io.vertx.rxjava3.core.net that return SocketAddressModifier and TypeMethodDescriptionNetSocket.localAddress()NetSocket.localAddress(boolean real) QuicConnection.localAddress()NetSocket.remoteAddress()NetSocket.remoteAddress(boolean real) QuicConnection.remoteAddress()Methods in io.vertx.rxjava3.core.net that return types with arguments of type SocketAddressModifier and TypeMethodDescriptionQuicEndpoint.bind(SocketAddress address) Binds a UDP socket at the givenaddress.QuicServer.listen()Start listening on theportandhostas configured in theQuicServerConfigused when creating the server.QuicServer.listen(int port) Start listening on the specified port and host "0.0.0.0".Start listening on the specifiedportandhost.QuicServer.listen(SocketAddress localAddress) Start listening on the specified local address.QuicEndpoint.rxBind(SocketAddress address) Binds a UDP socket at the givenaddress.QuicServer.rxListen()Start listening on theportandhostas configured in theQuicServerConfigused when creating the server.QuicServer.rxListen(int port) Start listening on the specified port and host "0.0.0.0".Start listening on the specifiedportandhost.QuicServer.rxListen(SocketAddress localAddress) Start listening on the specified local address.Methods in io.vertx.rxjava3.core.net with parameters of type SocketAddressModifier and TypeMethodDescriptionQuicEndpoint.bind(SocketAddress address) Binds a UDP socket at the givenaddress.NetClient.connect(SocketAddress remoteAddress) Open a connection to a server at the specificremoteAddress.NetClient.connect(SocketAddress remoteAddress, String serverName) Open a connection to a server at the specificremoteAddress.QuicClient.connect(SocketAddress address) Connect to a Quic server.QuicClient.connect(SocketAddress address, QuicConnectOptions options) Connect to a Quic server with specificoptions.NetServer.listen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theNetServerOptionsused when creating the server.QuicServer.listen(SocketAddress localAddress) Start listening on the specified local address.QuicEndpoint.rxBind(SocketAddress address) Binds a UDP socket at the givenaddress.NetClient.rxConnect(SocketAddress remoteAddress) Open a connection to a server at the specificremoteAddress.NetClient.rxConnect(SocketAddress remoteAddress, String serverName) Open a connection to a server at the specificremoteAddress.QuicClient.rxConnect(SocketAddress address) Connect to a Quic server.QuicClient.rxConnect(SocketAddress address, QuicConnectOptions options) Connect to a Quic server with specificoptions.NetServer.rxListen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theNetServerOptionsused when creating the server.QuicServer.rxListen(SocketAddress localAddress) Start listening on the specified local address. -
Uses of SocketAddress in io.vertx.rxjava3.core.net.endpoint
Methods in io.vertx.rxjava3.core.net.endpoint that return SocketAddress -
Uses of SocketAddress in io.vertx.rxjava3.ext.auth.audit
Methods in io.vertx.rxjava3.ext.auth.audit with parameters of type SocketAddressModifier and TypeMethodDescriptionSecurityAudit.destination(SocketAddress address) SecurityAudit.source(SocketAddress address) -
Uses of SocketAddress in io.vertx.rxjava3.ext.eventbus.bridge.tcp
Methods in io.vertx.rxjava3.ext.eventbus.bridge.tcp with parameters of type SocketAddressModifier and TypeMethodDescriptionTcpEventBusBridge.listen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in the used when creating the server.TcpEventBusBridge.rxListen(SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in the used when creating the server. -
Uses of SocketAddress in io.vertx.rxjava3.ext.web.client
Methods in io.vertx.rxjava3.ext.web.client with parameters of type SocketAddressModifier and TypeMethodDescriptionWebClient.request(HttpMethod method, SocketAddress serverAddress, int port, String host, UriTemplate requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of theportandhostparameters.WebClient.request(HttpMethod method, SocketAddress serverAddress, int port, String host, String requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of theportandhostparameters.WebClient.request(HttpMethod method, SocketAddress serverAddress, RequestOptions options) Deprecated.WebClient.request(HttpMethod method, SocketAddress serverAddress, UriTemplate requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of the default port and default host.WebClient.request(HttpMethod method, SocketAddress serverAddress, String requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of the default port and default host.WebClient.request(HttpMethod method, SocketAddress serverAddress, String host, UriTemplate requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of the default port andhostparameter.WebClient.request(HttpMethod method, SocketAddress serverAddress, String host, String requestURI) LikeWebClient.request(HttpMethod, int, String, String)using theserverAddressparameter to connect to the server instead of the default port andhostparameter.WebClient.requestAbs(HttpMethod method, SocketAddress serverAddress, UriTemplate absoluteURI) LikeWebClient.requestAbs(HttpMethod, String)using theserverAddressparameter to connect to the server instead of theabsoluteURIparameter.WebClient.requestAbs(HttpMethod method, SocketAddress serverAddress, String absoluteURI) LikeWebClient.requestAbs(HttpMethod, String)using theserverAddressparameter to connect to the server instead of theabsoluteURIparameter. -
Uses of SocketAddress in io.vertx.rxjava3.ext.web.handler.sockjs
Methods in io.vertx.rxjava3.ext.web.handler.sockjs that return SocketAddressModifier and TypeMethodDescriptionSockJSSocket.localAddress()Return the local address for this socketSockJSSocket.remoteAddress()Return the remote address for this socket -
Uses of SocketAddress in io.vertx.rxjava3.httpproxy
Methods in io.vertx.rxjava3.httpproxy with parameters of type SocketAddressModifier and TypeMethodDescriptionstatic OriginRequestProviderOriginRequestProvider.fixedAddress(SocketAddress address) Creates a simple provider for a fixed .HttpProxy.origin(SocketAddress address) Set theSocketAddressof the origin.Method parameters in io.vertx.rxjava3.httpproxy with type arguments of type SocketAddressModifier and TypeMethodDescriptionstatic OriginRequestProviderOriginRequestProvider.selector(Function<ProxyContext, Single<SocketAddress>> selector) Creates a provider that selects the origin server based onProxyContext. -
Uses of SocketAddress in io.vertx.rxjava3.mqtt
Methods in io.vertx.rxjava3.mqtt that return SocketAddress -
Uses of SocketAddress in io.vertx.serviceresolver.kube
Fields in io.vertx.serviceresolver.kube declared as SocketAddressMethods in io.vertx.serviceresolver.kube that return SocketAddressMethods in io.vertx.serviceresolver.kube with parameters of type SocketAddressModifier and TypeMethodDescriptionKubeResolverOptions.setServer(SocketAddress server) Set the Kubernetes server address -
Uses of SocketAddress in io.vertx.serviceresolver.srv
Fields in io.vertx.serviceresolver.srv declared as SocketAddressMethods in io.vertx.serviceresolver.srv that return SocketAddressMethods in io.vertx.serviceresolver.srv with parameters of type SocketAddressModifier and TypeMethodDescriptionSrvResolverOptions.setServer(SocketAddress server) Set the DNS resolver address. -
Uses of SocketAddress in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return SocketAddress -
Uses of SocketAddress in io.vertx.sqlclient.spi.connection
Methods in io.vertx.sqlclient.spi.connection that return SocketAddress
WebClient.request(RequestOptions)