Package com.streamlayer.triggers
Interface EventOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
- All Known Implementing Classes:
Event,Event.Builder
public interface EventOrBuilder extends com.google.protobuf.MessageLiteOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDatasource()datasourcecom.google.protobuf.ByteStringgetDatasourceBytes()datasourcejava.lang.StringgetId()unique raw event identifier from datasourcecom.google.protobuf.ByteStringgetIdBytes()unique raw event identifier from datasourcejava.lang.StringgetName()event namecom.google.protobuf.ByteStringgetNameBytes()event namejava.lang.StringgetScope()scope of eventcom.google.protobuf.ByteStringgetScopeBytes()scope of eventjava.lang.StringgetScopeId()unique scope identifier, e.g.com.google.protobuf.ByteStringgetScopeIdBytes()unique scope identifier, e.g.longgetTimestamp()timestamp, unixtime millisjava.lang.StringgetValue()event valuecom.google.protobuf.ByteStringgetValueBytes()event value
-
-
-
Method Detail
-
getId
java.lang.String getId()
unique raw event identifier from datasource
string id = 1 [json_name = "id"];- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
unique raw event identifier from datasource
string id = 1 [json_name = "id"];- Returns:
- The bytes for id.
-
getDatasource
java.lang.String getDatasource()
datasource
string datasource = 2 [json_name = "datasource"];- Returns:
- The datasource.
-
getDatasourceBytes
com.google.protobuf.ByteString getDatasourceBytes()
datasource
string datasource = 2 [json_name = "datasource"];- Returns:
- The bytes for datasource.
-
getScope
java.lang.String getScope()
scope of event
string scope = 3 [json_name = "scope"];- Returns:
- The scope.
-
getScopeBytes
com.google.protobuf.ByteString getScopeBytes()
scope of event
string scope = 3 [json_name = "scope"];- Returns:
- The bytes for scope.
-
getScopeId
java.lang.String getScopeId()
unique scope identifier, e.g. d8539eb6-3e27-40c8-906f-9cd1736321d8, adapter takes it from datasource raw data
string scope_id = 4 [json_name = "scopeId"];- Returns:
- The scopeId.
-
getScopeIdBytes
com.google.protobuf.ByteString getScopeIdBytes()
unique scope identifier, e.g. d8539eb6-3e27-40c8-906f-9cd1736321d8, adapter takes it from datasource raw data
string scope_id = 4 [json_name = "scopeId"];- Returns:
- The bytes for scopeId.
-
getName
java.lang.String getName()
event name
string name = 5 [json_name = "name"];- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
event name
string name = 5 [json_name = "name"];- Returns:
- The bytes for name.
-
getValue
java.lang.String getValue()
event value
string value = 6 [json_name = "value"];- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()
event value
string value = 6 [json_name = "value"];- Returns:
- The bytes for value.
-
getTimestamp
long getTimestamp()
timestamp, unixtime millis
int64 timestamp = 7 [json_name = "timestamp"];- Returns:
- The timestamp.
-
-