org.elasticsearch.action
Enum ThreadingModel

java.lang.Object
  extended by java.lang.Enum<ThreadingModel>
      extended by org.elasticsearch.action.ThreadingModel
All Implemented Interfaces:
Serializable, Comparable<ThreadingModel>

public enum ThreadingModel
extends Enum<ThreadingModel>


Enum Constant Summary
LISTENER
           
NONE
           
OPERATION
           
OPERATION_LISTENER
           
 
Method Summary
 ThreadingModel addListener()
           
 ThreadingModel addOperation()
           
static ThreadingModel fromId(byte id)
           
 byte id()
           
 ThreadingModel removeListener()
           
 ThreadingModel removeOperation()
           
 boolean threadedListener()
          true if the invocation of the action result listener will be executed on a different thread (than the calling thread or an "expensive" thread, like the IO thread).
 boolean threadedOperation()
          true if the actual operation the action represents will be executed on a different thread than the calling thread (assuming it will be executed on the same node).
static ThreadingModel valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ThreadingModel[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final ThreadingModel NONE

OPERATION

public static final ThreadingModel OPERATION

LISTENER

public static final ThreadingModel LISTENER

OPERATION_LISTENER

public static final ThreadingModel OPERATION_LISTENER
Method Detail

values

public static ThreadingModel[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ThreadingModel c : ThreadingModel.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ThreadingModel valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

id

public byte id()

threadedOperation

public boolean threadedOperation()
true if the actual operation the action represents will be executed on a different thread than the calling thread (assuming it will be executed on the same node).


threadedListener

public boolean threadedListener()
true if the invocation of the action result listener will be executed on a different thread (than the calling thread or an "expensive" thread, like the IO thread).


addListener

public ThreadingModel addListener()

removeListener

public ThreadingModel removeListener()

addOperation

public ThreadingModel addOperation()

removeOperation

public ThreadingModel removeOperation()

fromId

public static ThreadingModel fromId(byte id)


Copyright © 2009-2012. All Rights Reserved.