Package akka.persistence.serialization
Interface MessageFormats.PersistentStateChangeEventOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
MessageFormats.PersistentStateChangeEvent
,MessageFormats.PersistentStateChangeEvent.Builder
- Enclosing class:
- MessageFormats
public static interface MessageFormats.PersistentStateChangeEventOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getStateIdentifier()
required string stateIdentifier = 1;
akka.protobufv3.internal.ByteString
getStateIdentifierBytes()
required string stateIdentifier = 1;
java.lang.String
getTimeout()
not used in new records from 2.4.5akka.protobufv3.internal.ByteString
getTimeoutBytes()
not used in new records from 2.4.5long
getTimeoutNanos()
optional int64 timeoutNanos = 3;
boolean
hasStateIdentifier()
required string stateIdentifier = 1;
boolean
hasTimeout()
not used in new records from 2.4.5boolean
hasTimeoutNanos()
optional int64 timeoutNanos = 3;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStateIdentifier
boolean hasStateIdentifier()
required string stateIdentifier = 1;
- Returns:
- Whether the stateIdentifier field is set.
-
getStateIdentifier
java.lang.String getStateIdentifier()
required string stateIdentifier = 1;
- Returns:
- The stateIdentifier.
-
getStateIdentifierBytes
akka.protobufv3.internal.ByteString getStateIdentifierBytes()
required string stateIdentifier = 1;
- Returns:
- The bytes for stateIdentifier.
-
hasTimeout
boolean hasTimeout()
not used in new records from 2.4.5
optional string timeout = 2;
- Returns:
- Whether the timeout field is set.
-
getTimeout
java.lang.String getTimeout()
not used in new records from 2.4.5
optional string timeout = 2;
- Returns:
- The timeout.
-
getTimeoutBytes
akka.protobufv3.internal.ByteString getTimeoutBytes()
not used in new records from 2.4.5
optional string timeout = 2;
- Returns:
- The bytes for timeout.
-
hasTimeoutNanos
boolean hasTimeoutNanos()
optional int64 timeoutNanos = 3;
- Returns:
- Whether the timeoutNanos field is set.
-
getTimeoutNanos
long getTimeoutNanos()
optional int64 timeoutNanos = 3;
- Returns:
- The timeoutNanos.
-
-