public static enum RogLog.Entry.Type extends Enum<RogLog.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 RogLog.Entry.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RogLog.Entry.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RogLog.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 RogLog.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 RogLog.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 RogLog.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 RogLog.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 RogLog.Entry.Type[] values()
for (RogLog.Entry.Type c : RogLog.Entry.Type.values()) System.out.println(c);
public static RogLog.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 Neeve Research, LLC. All Rights Reserved.