public enum EventType extends Enum<EventType>
Event
s.Enum Constant and Description |
---|
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.
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.