Class HttpEndpoint
- java.lang.Object
-
- io.vertx.rxjava3.servicediscovery.types.HttpEndpoint
-
- All Implemented Interfaces:
io.vertx.lang.rx.RxDelegate
public class HttpEndpoint extends Object implements io.vertx.lang.rx.RxDelegate
for HTTP endpoint (REST api). Consumers receive a HTTP client configured with the host and port of the endpoint.NOTE: This class has been automatically generated from the
original
non RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<HttpEndpoint>
__TYPE_ARG
static String
TYPE
static String
UNKNOWN
Unknown type.
-
Constructor Summary
Constructors Constructor Description HttpEndpoint(HttpEndpoint delegate)
HttpEndpoint(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Record
createRecord(String name, boolean ssl, String host, int port, String root, JsonObject metadata)
Same ascreateRecord(java.lang.String, java.lang.String, int, java.lang.String, io.vertx.core.json.JsonObject)
but let you configure whether or not the service is usinghttps
.static Record
createRecord(String name, String host)
Same ascreateRecord(java.lang.String, java.lang.String, int, java.lang.String, io.vertx.core.json.JsonObject)
but without metadata, using the port 80 and using "/" as root.static Record
createRecord(String name, String host, int port, String root)
Same ascreateRecord(java.lang.String, java.lang.String, int, java.lang.String, io.vertx.core.json.JsonObject)
but without metadata.static Record
createRecord(String name, String host, int port, String root, JsonObject metadata)
Convenient method to create a record for a HTTP endpoint.boolean
equals(Object o)
static Single<HttpClient>
getClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
getClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
getClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
getClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .HttpEndpoint
getDelegate()
static Single<WebClient>
getWebClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<WebClient>
getWebClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<WebClient>
getWebClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<WebClient>
getWebClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .int
hashCode()
static HttpEndpoint
newInstance(HttpEndpoint arg)
static Single<HttpClient>
rxGetClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
rxGetClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
rxGetClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<HttpClient>
rxGetClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<WebClient>
rxGetWebClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<WebClient>
rxGetWebClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<WebClient>
rxGetWebClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured .static Single<WebClient>
rxGetWebClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured .String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final io.vertx.lang.rx.TypeArg<HttpEndpoint> __TYPE_ARG
-
UNKNOWN
public static final String UNKNOWN
Unknown type.- See Also:
- Constant Field Values
-
TYPE
public static final String TYPE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
HttpEndpoint
public HttpEndpoint(HttpEndpoint delegate)
-
HttpEndpoint
public HttpEndpoint(Object delegate)
-
-
Method Detail
-
getDelegate
public HttpEndpoint getDelegate()
- Specified by:
getDelegate
in interfaceio.vertx.lang.rx.RxDelegate
-
createRecord
public static Record createRecord(String name, String host, int port, String root, JsonObject metadata)
Convenient method to create a record for a HTTP endpoint.- Parameters:
name
- the service namehost
- the host (IP or DNS name), it must be the _public_ IP / nameport
- the port, it must be the _public_ portroot
- the path of the service, "/" if not setmetadata
- additional metadata- Returns:
- the created record
-
createRecord
public static Record createRecord(String name, boolean ssl, String host, int port, String root, JsonObject metadata)
Same ascreateRecord(java.lang.String, java.lang.String, int, java.lang.String, io.vertx.core.json.JsonObject)
but let you configure whether or not the service is usinghttps
.- Parameters:
name
- the service namessl
- whether or not the service is using HTTPShost
- the host (IP or DNS name), it must be the _public_ IP / nameport
- the port, it must be the _public_ portroot
- the path of the service, "/" if not setmetadata
- additional metadata- Returns:
- the created record
-
createRecord
public static Record createRecord(String name, String host, int port, String root)
Same ascreateRecord(java.lang.String, java.lang.String, int, java.lang.String, io.vertx.core.json.JsonObject)
but without metadata.- Parameters:
name
- the service namehost
- the host, must be publicport
- the portroot
- the root, if not set "/" is used- Returns:
- the created record
-
createRecord
public static Record createRecord(String name, String host)
Same ascreateRecord(java.lang.String, java.lang.String, int, java.lang.String, io.vertx.core.json.JsonObject)
but without metadata, using the port 80 and using "/" as root.- Parameters:
name
- the namehost
- the host- Returns:
- the created record
-
getClient
public static Single<HttpClient> getClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter, optional- Returns:
- a future notified with the client
-
rxGetClient
public static Single<HttpClient> rxGetClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter, optional- Returns:
- a future notified with the client
-
getWebClient
public static Single<WebClient> getWebClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter, optional- Returns:
- a future notified with the client
-
rxGetWebClient
public static Single<WebClient> rxGetWebClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter, optional- Returns:
- a future notified with the client
-
getClient
public static Single<HttpClient> getClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client- Parameters:
discovery
- The service discovery instancefilter
- The filter, optionalconf
- the configuration of the client- Returns:
- a future notified with the client
-
rxGetClient
public static Single<HttpClient> rxGetClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client- Parameters:
discovery
- The service discovery instancefilter
- The filter, optionalconf
- the configuration of the client- Returns:
- a future notified with the client
-
getWebClient
public static Single<WebClient> getWebClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client- Parameters:
discovery
- The service discovery instancefilter
- The filter, optionalconf
- the configuration of the client- Returns:
- a future notified with the client
-
rxGetWebClient
public static Single<WebClient> rxGetWebClient(ServiceDiscovery discovery, JsonObject filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client- Parameters:
discovery
- The service discovery instancefilter
- The filter, optionalconf
- the configuration of the client- Returns:
- a future notified with the client
-
getClient
public static Single<HttpClient> getClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter- Returns:
- a future notified with the client
-
rxGetClient
public static Single<HttpClient> rxGetClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter- Returns:
- a future notified with the client
-
getWebClient
public static Single<WebClient> getWebClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter- Returns:
- a future notified with the client
-
rxGetWebClient
public static Single<WebClient> rxGetWebClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails.- Parameters:
discovery
- The service discovery instancefilter
- The filter- Returns:
- a future notified with the client
-
getClient
public static Single<HttpClient> getClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client.- Parameters:
discovery
- The service discovery instancefilter
- The filterconf
- the configuration of the client- Returns:
- a future notified with the client
-
rxGetClient
public static Single<HttpClient> rxGetClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client.- Parameters:
discovery
- The service discovery instancefilter
- The filterconf
- the configuration of the client- Returns:
- a future notified with the client
-
getWebClient
public static Single<WebClient> getWebClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client.- Parameters:
discovery
- The service discovery instancefilter
- The filterconf
- the configuration of the client- Returns:
- a future notified with the client
-
rxGetWebClient
public static Single<WebClient> rxGetWebClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject conf)
Convenient method that looks for a HTTP endpoint and provides the configured . The async result is marked as failed is there are no matching services, or if the lookup fails. This method accepts a configuration for the HTTP client.- Parameters:
discovery
- The service discovery instancefilter
- The filterconf
- the configuration of the client- Returns:
- a future notified with the client
-
newInstance
public static HttpEndpoint newInstance(HttpEndpoint arg)
-
-