public enum ArchiveThreadingMode extends Enum<ArchiveThreadingMode>
| Enum Constant and Description |
|---|
DEDICATED
3 Threads, one dedicated to each of the
Agents. |
INVOKER
No threads are started in the
Archive. |
SHARED
|
| Modifier and Type | Method and Description |
|---|---|
static ArchiveThreadingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchiveThreadingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchiveThreadingMode INVOKER
Archive.
The Archive will be made runnable via an Archive.invoker()
public static final ArchiveThreadingMode SHARED
public static final ArchiveThreadingMode DEDICATED
Agents.public static ArchiveThreadingMode[] values()
for (ArchiveThreadingMode c : ArchiveThreadingMode.values()) System.out.println(c);
public static ArchiveThreadingMode 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-2023 Real Logic Limited. All Rights Reserved.