public final enum

NodeDiscoveryType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.netflix.astyanax.connectionpool.NodeDiscoveryType

Summary

Enum Values
NodeDiscoveryType  DISCOVERY_SERVICE  Discover nodes exclusively from an external node discovery service  
NodeDiscoveryType  NONE  Use only nodes in the list of seeds  
NodeDiscoveryType  RING_DESCRIBE  Discover nodes exclusively from doing a ring describe  
NodeDiscoveryType  TOKEN_AWARE  Intersect ring describe and nodes from an external service. 
Public Methods
static NodeDiscoveryType valueOf(String name)
final static NodeDiscoveryType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final NodeDiscoveryType DISCOVERY_SERVICE

Discover nodes exclusively from an external node discovery service

public static final NodeDiscoveryType NONE

Use only nodes in the list of seeds

public static final NodeDiscoveryType RING_DESCRIBE

Discover nodes exclusively from doing a ring describe

public static final NodeDiscoveryType TOKEN_AWARE

Intersect ring describe and nodes from an external service. This solve the multi-region ring describe problem where ring describe returns nodes from other regions.

Public Methods

public static NodeDiscoveryType valueOf (String name)

public static final NodeDiscoveryType[] values ()