Package akka.remote
Interface WireFormats.AkkaHandshakeInfoOrBuilder
-
- All Superinterfaces:
akka.protobufv3.internal.MessageLiteOrBuilder
,akka.protobufv3.internal.MessageOrBuilder
- All Known Implementing Classes:
WireFormats.AkkaHandshakeInfo
,WireFormats.AkkaHandshakeInfo.Builder
- Enclosing class:
- WireFormats
public static interface WireFormats.AkkaHandshakeInfoOrBuilder extends akka.protobufv3.internal.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getCookie()
optional string cookie = 3;
akka.protobufv3.internal.ByteString
getCookieBytes()
optional string cookie = 3;
WireFormats.AddressData
getOrigin()
required .AddressData origin = 1;
WireFormats.AddressDataOrBuilder
getOriginOrBuilder()
required .AddressData origin = 1;
long
getUid()
required fixed64 uid = 2;
boolean
hasCookie()
optional string cookie = 3;
boolean
hasOrigin()
required .AddressData origin = 1;
boolean
hasUid()
required fixed64 uid = 2;
-
Methods inherited from interface akka.protobufv3.internal.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasOrigin
boolean hasOrigin()
required .AddressData origin = 1;
- Returns:
- Whether the origin field is set.
-
getOrigin
WireFormats.AddressData getOrigin()
required .AddressData origin = 1;
- Returns:
- The origin.
-
getOriginOrBuilder
WireFormats.AddressDataOrBuilder getOriginOrBuilder()
required .AddressData origin = 1;
-
hasUid
boolean hasUid()
required fixed64 uid = 2;
- Returns:
- Whether the uid field is set.
-
getUid
long getUid()
required fixed64 uid = 2;
- Returns:
- The uid.
-
hasCookie
boolean hasCookie()
optional string cookie = 3;
- Returns:
- Whether the cookie field is set.
-
getCookie
java.lang.String getCookie()
optional string cookie = 3;
- Returns:
- The cookie.
-
getCookieBytes
akka.protobufv3.internal.ByteString getCookieBytes()
optional string cookie = 3;
- Returns:
- The bytes for cookie.
-
-