Package akka.cluster.ddata.protobuf.msg
Interface ReplicatorMessages.Status.EntryOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
ReplicatorMessages.Status.Entry
,ReplicatorMessages.Status.Entry.Builder
- Enclosing class:
- ReplicatorMessages.Status
public static interface ReplicatorMessages.Status.EntryOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description akka.protobufv3.internal.ByteString
getDigest()
required bytes digest = 2;
java.lang.String
getKey()
required string key = 1;
akka.protobufv3.internal.ByteString
getKeyBytes()
required string key = 1;
long
getUsedTimestamp()
optional sint64 usedTimestamp = 3;
boolean
hasDigest()
required bytes digest = 2;
boolean
hasKey()
required string key = 1;
boolean
hasUsedTimestamp()
optional sint64 usedTimestamp = 3;
-
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.
-
hasDigest
boolean hasDigest()
required bytes digest = 2;
- Returns:
- Whether the digest field is set.
-
getDigest
akka.protobufv3.internal.ByteString getDigest()
required bytes digest = 2;
- Returns:
- The digest.
-
hasUsedTimestamp
boolean hasUsedTimestamp()
optional sint64 usedTimestamp = 3;
- Returns:
- Whether the usedTimestamp field is set.
-
getUsedTimestamp
long getUsedTimestamp()
optional sint64 usedTimestamp = 3;
- Returns:
- The usedTimestamp.
-
-