public enum RedoLogCapacityExceededPolicy extends Enum<RedoLogCapacityExceededPolicy>
Enum Constant and Description |
---|
BLOCK_OPERATIONS
Block operations until redo log size will decrease
|
DROP_OLDEST
Drop oldest pending item in the redo log
|
Modifier and Type | Method and Description |
---|---|
static RedoLogCapacityExceededPolicy |
fromCode(Integer code) |
static RedoLogCapacityExceededPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RedoLogCapacityExceededPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RedoLogCapacityExceededPolicy BLOCK_OPERATIONS
public static final RedoLogCapacityExceededPolicy DROP_OLDEST
public static RedoLogCapacityExceededPolicy[] values()
for (RedoLogCapacityExceededPolicy c : RedoLogCapacityExceededPolicy.values()) System.out.println(c);
public static RedoLogCapacityExceededPolicy 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 nullpublic static RedoLogCapacityExceededPolicy fromCode(Integer code)
Copyright © GigaSpaces.