Uses of Interface
org.elasticsearch.common.transport.TransportAddress

Packages that use TransportAddress
org.elasticsearch.client.transport   
org.elasticsearch.cluster.node   
org.elasticsearch.common.transport   
org.elasticsearch.transport   
org.elasticsearch.transport.local   
org.elasticsearch.transport.netty   
 

Uses of TransportAddress in org.elasticsearch.client.transport
 

Methods in org.elasticsearch.client.transport that return types with arguments of type TransportAddress
 com.google.common.collect.ImmutableList<TransportAddress> TransportClient.transportAddresses()
          Returns the current registered transport addresses to use (added using TransportClient.addTransportAddress(org.elasticsearch.common.transport.TransportAddress).
 com.google.common.collect.ImmutableList<TransportAddress> TransportClientNodesService.transportAddresses()
           
 

Methods in org.elasticsearch.client.transport with parameters of type TransportAddress
 TransportClient TransportClient.addTransportAddress(TransportAddress transportAddress)
          Adds a transport address that will be used to connect to.
 TransportClient TransportClient.addTransportAddresses(TransportAddress... transportAddress)
          Adds a list of transport addresses that will be used to connect to.
 TransportClientNodesService TransportClientNodesService.addTransportAddresses(TransportAddress... transportAddresses)
           
 TransportClient TransportClient.removeTransportAddress(TransportAddress transportAddress)
          Removes a transport address from the list of transport addresses that are used to connect to.
 TransportClientNodesService TransportClientNodesService.removeTransportAddress(TransportAddress transportAddress)
           
 

Uses of TransportAddress in org.elasticsearch.cluster.node
 

Methods in org.elasticsearch.cluster.node that return TransportAddress
 TransportAddress DiscoveryNode.address()
          The address that the node can be communicated with.
 TransportAddress DiscoveryNode.getAddress()
          The address that the node can be communicated with.
 

Methods in org.elasticsearch.cluster.node with parameters of type TransportAddress
 DiscoveryNode DiscoveryNodes.findByAddress(TransportAddress address)
           
 

Constructors in org.elasticsearch.cluster.node with parameters of type TransportAddress
DiscoveryNode(String nodeName, String nodeId, TransportAddress address, Map<String,String> attributes)
           
DiscoveryNode(String nodeId, TransportAddress address)
           
 

Uses of TransportAddress in org.elasticsearch.common.transport
 

Classes in org.elasticsearch.common.transport that implement TransportAddress
 class DummyTransportAddress
           
 class InetSocketTransportAddress
          A transport address used for IP socket address (wraps InetSocketAddress).
 class LocalTransportAddress
           
 

Methods in org.elasticsearch.common.transport that return TransportAddress
static TransportAddress TransportAddressSerializers.addressFromStream(StreamInput input)
           
 TransportAddress BoundTransportAddress.boundAddress()
           
 TransportAddress BoundTransportAddress.publishAddress()
           
 

Methods in org.elasticsearch.common.transport with parameters of type TransportAddress
static void TransportAddressSerializers.addAddressType(TransportAddress address)
           
static void TransportAddressSerializers.addressToStream(StreamOutput out, TransportAddress address)
           
 boolean LocalTransportAddress.sameHost(TransportAddress other)
           
 boolean InetSocketTransportAddress.sameHost(TransportAddress other)
           
 boolean DummyTransportAddress.sameHost(TransportAddress otherAddress)
           
 boolean TransportAddress.sameHost(TransportAddress other)
           
 

Constructors in org.elasticsearch.common.transport with parameters of type TransportAddress
BoundTransportAddress(TransportAddress boundAddress, TransportAddress publishAddress)
           
 

Uses of TransportAddress in org.elasticsearch.transport
 

Methods in org.elasticsearch.transport that return TransportAddress
 TransportAddress ActionTransportException.address()
          The target address to invoke the action on.
 TransportAddress[] Transport.addressesFromString(String address)
          Returns an address from its string representation.
 TransportAddress[] TransportService.addressesFromString(String address)
           
 

Method parameters in org.elasticsearch.transport with type arguments of type TransportAddress
 boolean Transport.addressSupported(Class<? extends TransportAddress> address)
          Is the address type supported.
 boolean TransportService.addressSupported(Class<? extends TransportAddress> address)
           
 

Constructors in org.elasticsearch.transport with parameters of type TransportAddress
ActionTransportException(String name, TransportAddress address, String action, String msg, Throwable cause)
           
ActionTransportException(String name, TransportAddress address, String action, Throwable cause)
           
RemoteTransportException(String name, TransportAddress address, String action, Throwable cause)
           
 

Uses of TransportAddress in org.elasticsearch.transport.local
 

Methods in org.elasticsearch.transport.local that return TransportAddress
 TransportAddress[] LocalTransport.addressesFromString(String address)
           
 

Method parameters in org.elasticsearch.transport.local with type arguments of type TransportAddress
 boolean LocalTransport.addressSupported(Class<? extends TransportAddress> address)
           
 

Uses of TransportAddress in org.elasticsearch.transport.netty
 

Methods in org.elasticsearch.transport.netty that return TransportAddress
 TransportAddress[] NettyTransport.addressesFromString(String address)
           
 

Method parameters in org.elasticsearch.transport.netty with type arguments of type TransportAddress
 boolean NettyTransport.addressSupported(Class<? extends TransportAddress> address)
           
 



Copyright © 2009-2012. All Rights Reserved.