public static enum OutOfCoreOracle.IOAction extends Enum<OutOfCoreOracle.IOAction>
| Enum Constant and Description | 
|---|
| LOAD_PARTITIONLoading a partition (prioritizing *unprocessed* over *processed*) from
 disk to memory. | 
| LOAD_TO_SWAP_PARTITIONLoading an *unprocessed* partition from disk to memory, only if there are
 *processed* partitions in memory. | 
| LOAD_UNPROCESSED_PARTITIONLoading an *unprocessed* partition from disk to memory. | 
| STORE_MESSAGES_AND_BUFFERSEither of:
    - storing incoming messages of any partition currently on disk, or
    - storing incoming messages' raw data buffer of any partition
      currently on disk, or
    - storing partitions' raw data buffer for those partitions that are
      currently on disk. | 
| STORE_PARTITIONStoring a partition from memory on disk, prioritizing to *processed*
 partitions on memory. | 
| STORE_PROCESSED_PARTITIONStoring a partition that is *processed* in the current iteration cycle. | 
| URGENT_LOAD_PARTITIONLoading a partition regardless of the memory situation. | 
| Modifier and Type | Method and Description | 
|---|---|
| static OutOfCoreOracle.IOAction | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static OutOfCoreOracle.IOAction[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final OutOfCoreOracle.IOAction STORE_MESSAGES_AND_BUFFERS
public static final OutOfCoreOracle.IOAction STORE_PROCESSED_PARTITION
public static final OutOfCoreOracle.IOAction STORE_PARTITION
public static final OutOfCoreOracle.IOAction LOAD_TO_SWAP_PARTITION
public static final OutOfCoreOracle.IOAction LOAD_UNPROCESSED_PARTITION
public static final OutOfCoreOracle.IOAction LOAD_PARTITION
public static final OutOfCoreOracle.IOAction URGENT_LOAD_PARTITION
public static OutOfCoreOracle.IOAction[] values()
for (OutOfCoreOracle.IOAction c : OutOfCoreOracle.IOAction.values()) System.out.println(c);
public static OutOfCoreOracle.IOAction 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 © 2011-2020 The Apache Software Foundation. All Rights Reserved.