Package com.buildless.service.v1
Interface EventIDOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EventID,EventID.Builder
public interface EventIDOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetEid()Event which is being acknowledged.com.google.protobuf.ByteStringEvent which is being acknowledged.booleangetOk()Specifies that an event was received successfully.getSid()Specifies the session ID for a multi-event session.com.google.protobuf.ByteStringSpecifies the session ID for a multi-event session.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getOk
boolean getOk()Specifies that an event was received successfully.
bool ok = 1 [json_name = "ok"];- Returns:
- The ok.
-
getEid
String getEid()Event which is being acknowledged. May only be enclosed in multiplexed circumstances.
string eid = 2 [json_name = "eid"];- Returns:
- The eid.
-
getEidBytes
com.google.protobuf.ByteString getEidBytes()Event which is being acknowledged. May only be enclosed in multiplexed circumstances.
string eid = 2 [json_name = "eid"];- Returns:
- The bytes for eid.
-
getSid
String getSid()Specifies the session ID for a multi-event session. This is only populated for the response to a watermark event in a newly-established event stream.
string sid = 3 [json_name = "sid"];- Returns:
- The sid.
-
getSidBytes
com.google.protobuf.ByteString getSidBytes()Specifies the session ID for a multi-event session. This is only populated for the response to a watermark event in a newly-established event stream.
string sid = 3 [json_name = "sid"];- Returns:
- The bytes for sid.
-