public enum IOReactorSharingMode extends Enum<IOReactorSharingMode>
| Enum Constant and Description |
|---|
SHARED
Seperate IO Reactor for all Axis2 Listeners and share one IO Reactor among Inbound Endpoints
|
UNSHARED
Seperate IO Reactor for all Axis2 Listeners and seperate IOReactor for Inbound Endpoints
|
| Modifier and Type | Method and Description |
|---|---|
static IOReactorSharingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IOReactorSharingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IOReactorSharingMode SHARED
public static final IOReactorSharingMode UNSHARED
public static IOReactorSharingMode[] values()
for (IOReactorSharingMode c : IOReactorSharingMode.values()) System.out.println(c);
public static IOReactorSharingMode 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 © 2005–2019 Apache Software Foundation. All rights reserved.