Package com.mux.spaces.api.proto.signals
Interface Signals.CustomEventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Signals.CustomEvent
,Signals.CustomEvent.Builder
- Enclosing class:
- Signals
public static interface Signals.CustomEventOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getConnectionId()
Response only.com.google.protobuf.ByteString
getConnectionIdBytes()
Response only.java.lang.String
getId()
set by the SDKcom.google.protobuf.ByteString
getIdBytes()
set by the SDKjava.lang.String
getPayload()
arbitrary user datacom.google.protobuf.ByteString
getPayloadBytes()
arbitrary user dataSignals.CustomEvent.Scope
getScope()
.mux.spaces.api.CustomEvent.Scope scope = 3;
int
getScopeValue()
.mux.spaces.api.CustomEvent.Scope scope = 3;
int
getSequenceNum()
Response only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getId
java.lang.String getId()
set by the SDK
string id = 1;
- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
set by the SDK
string id = 1;
- Returns:
- The bytes for id.
-
getPayload
java.lang.String getPayload()
arbitrary user data
string payload = 2;
- Returns:
- The payload.
-
getPayloadBytes
com.google.protobuf.ByteString getPayloadBytes()
arbitrary user data
string payload = 2;
- Returns:
- The bytes for payload.
-
getScopeValue
int getScopeValue()
.mux.spaces.api.CustomEvent.Scope scope = 3;
- Returns:
- The enum numeric value on the wire for scope.
-
getScope
Signals.CustomEvent.Scope getScope()
.mux.spaces.api.CustomEvent.Scope scope = 3;
- Returns:
- The scope.
-
getConnectionId
java.lang.String getConnectionId()
Response only. Connection ID of the sender.
string connection_id = 4;
- Returns:
- The connectionId.
-
getConnectionIdBytes
com.google.protobuf.ByteString getConnectionIdBytes()
Response only. Connection ID of the sender.
string connection_id = 4;
- Returns:
- The bytes for connectionId.
-
getSequenceNum
int getSequenceNum()
Response only. Monotonically increasing from 1, unique over the lifetime of the session. Can be used by application to order events across clients.
int32 sequence_num = 5;
- Returns:
- The sequenceNum.
-
-