public static enum MultiThreadListenerHandler.ThreadingMode extends Enum<MultiThreadListenerHandler.ThreadingMode>
| Enum Constant and Description |
|---|
ALL_LISTENERS_IN_SAME_THREAD
All listeners are notified in sequence in the same thread.
|
EACH_LISTENER_IN_OWN_THREAD
Each listener is notified in a different thread.
|
| Modifier and Type | Method and Description |
|---|---|
static MultiThreadListenerHandler.ThreadingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MultiThreadListenerHandler.ThreadingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MultiThreadListenerHandler.ThreadingMode ALL_LISTENERS_IN_SAME_THREAD
public static final MultiThreadListenerHandler.ThreadingMode EACH_LISTENER_IN_OWN_THREAD
public static MultiThreadListenerHandler.ThreadingMode[] values()
for (MultiThreadListenerHandler.ThreadingMode c : MultiThreadListenerHandler.ThreadingMode.values()) System.out.println(c);
public static MultiThreadListenerHandler.ThreadingMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.