|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<EventType>
com.bigdata.service.EventType
public enum EventType
Type safe enum for Events.
| Enum Constant Summary | |
|---|---|
AsynchronousOverflow
Asynchronous overflow migrates data off of the old journal and onto read-optimized index segments and is responsible for running operation which split, join, or move index partitions. |
|
IndexSegmentBuild
Operation that builds an index segment. |
|
IndexSegmentOpenClose
An IndexSegment open-close event (start is open, end is close). |
|
IndexSegmentStoreOpenClose
An IndexSegmentStore open-close event (start is open, end is close). |
|
PurgeResources
Purge resources. |
|
SynchronousOverflow
Synchronous overflow is a fast operation that occurs when the live journal is nearly at its maximum capacity. |
|
| Method Summary | |
|---|---|
static EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EventType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final EventType SynchronousOverflow
public static final EventType AsynchronousOverflow
public static final EventType IndexSegmentBuild
BTree on a Journal used to absorb writes for an index
partition) or compacting merges (from the full view of the index
partition).
public static final EventType IndexSegmentStoreOpenClose
IndexSegmentStore open-close event (start is open, end is close).
public static final EventType IndexSegmentOpenClose
IndexSegment open-close event (start is open, end is close).
public static final EventType PurgeResources
StoreManager.purgeOldResources(long, boolean)| Method Detail |
|---|
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||