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
original
non 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 boolean
equals(Object o)
EndpointResolver
getDelegate()
int
hashCode()
static EndpointResolver
newInstance(EndpointResolver arg)
Future<Endpoint>
resolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress
io.reactivex.Single<Endpoint>
rxResolveEndpoint(Address address)
Resolver an endpoint for the specifiedaddress
String
toString()
-
-
-
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:
getDelegate
in 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)
-
-