Interface ReplicatedEventSourcing.VersionVector.EntryOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ReplicatedEventSourcing.VersionVector.Entry
,ReplicatedEventSourcing.VersionVector.Entry.Builder
- Enclosing class:
- ReplicatedEventSourcing.VersionVector
public static interface ReplicatedEventSourcing.VersionVector.EntryOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getKey()
required string key = 1;
akka.protobufv3.internal.ByteString
getKeyBytes()
required string key = 1;
long
getVersion()
required int64 version = 2;
boolean
hasKey()
required string key = 1;
boolean
hasVersion()
required int64 version = 2;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasKey
boolean hasKey()
required string key = 1;
- Returns:
- Whether the key field is set.
-
getKey
java.lang.String getKey()
required string key = 1;
- Returns:
- The key.
-
getKeyBytes
akka.protobufv3.internal.ByteString getKeyBytes()
required string key = 1;
- Returns:
- The bytes for key.
-
hasVersion
boolean hasVersion()
required int64 version = 2;
- Returns:
- Whether the version field is set.
-
getVersion
long getVersion()
required int64 version = 2;
- Returns:
- The version.
-
-