Class EndpointResolver
- java.lang.Object
-
- io.vertx.reactivex.core.net.endpoint.EndpointResolver
-
- All Implemented Interfaces:
RxDelegate
public class EndpointResolver extends Object implements RxDelegate
A resolver for endpoints.NOTE: This class has been automatically generated from the
originalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<EndpointResolver>__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description EndpointResolver(EndpointResolver delegate)EndpointResolver(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)EndpointResolvergetDelegate()inthashCode()static EndpointResolvernewInstance(EndpointResolver arg)Future<Endpoint>resolveEndpoint(Address address)Resolver an endpoint for the specifiedaddressio.reactivex.Single<Endpoint>rxResolveEndpoint(Address address)Resolver an endpoint for the specifiedaddressStringtoString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<EndpointResolver> __TYPE_ARG
-
-
Constructor Detail
-
EndpointResolver
public EndpointResolver(EndpointResolver delegate)
-
EndpointResolver
public EndpointResolver(Object delegate)
-
-
Method Detail
-
getDelegate
public EndpointResolver getDelegate()
- Specified by:
getDelegatein interfaceRxDelegate
-
resolveEndpoint
public Future<Endpoint> resolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress- Parameters:
address- the address to lookup- Returns:
- the endpoint lookup result
-
rxResolveEndpoint
public io.reactivex.Single<Endpoint> rxResolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress- Parameters:
address- the address to lookup- Returns:
- the endpoint lookup result
-
newInstance
public static EndpointResolver newInstance(EndpointResolver arg)
-
-