public static enum RogLogReader.Entry.Type extends Enum<RogLogReader.Entry.Type>
| Enum Constant and Description |
|---|
Message
Represents a message.
|
Put
Represents an object put event.
|
Remove
Represents an object update event.
|
Send
Represents an object send event.
|
Update
Represents an object update event.
|
| Modifier and Type | Method and Description |
|---|---|
static RogLogReader.Entry.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RogLogReader.Entry.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RogLogReader.Entry.Type Put
An entry in the log of this type is used to record a store object put operation. An entry of this type is added to the log only during State Replication.
public static final RogLogReader.Entry.Type Update
An entry in the log of this type is used to record a store object update operation. An entry of this type is added to the log only during State Replication.
public static final RogLogReader.Entry.Type Remove
An entry in the log of this type is used to record a store object remove operation. An entry of this type is only added to the log during State Replication.
public static final RogLogReader.Entry.Type Send
An entry in the log of this type is used to record a store object send operation. An entry of this type is only added to the log during State Replication or Event Sourcing.
Note: The AEP engine logs replicated inbound messages (during Event Sourcing) using this log entry type.
public static final RogLogReader.Entry.Type Message
An entry in the log of this type is used to record message logging operations. Entries of this type are independent of the HA Policy at play since they are recorded only when the user explicitly logs messages into the log.
Note: The AEP engine records outbound messages using this log entry type.
public static RogLogReader.Entry.Type[] values()
for (RogLogReader.Entry.Type c : RogLogReader.Entry.Type.values()) System.out.println(c);
public static RogLogReader.Entry.Type 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 © 2019 N5 Technologies, Inc. All Rights Reserved.