Package io.dapr.v1
Interface DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DaprAppCallbackProtos.TopicEventBulkRequest,DaprAppCallbackProtos.TopicEventBulkRequest.Builder
- Enclosing class:
- DaprAppCallbackProtos
public static interface DaprAppCallbackProtos.TopicEventBulkRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description booleancontainsMetadata(String key)The metadata associated with the this bulk request.DaprAppCallbackProtos.TopicEventBulkRequestEntrygetEntries(int index)The list of items inside this bulk request.intgetEntriesCount()The list of items inside this bulk request.List<DaprAppCallbackProtos.TopicEventBulkRequestEntry>getEntriesList()The list of items inside this bulk request.DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuildergetEntriesOrBuilder(int index)The list of items inside this bulk request.List<? extends DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder>getEntriesOrBuilderList()The list of items inside this bulk request.StringgetId()Unique identifier for the bulk request.com.google.protobuf.ByteStringgetIdBytes()Unique identifier for the bulk request.Map<String,String>getMetadata()Deprecated.intgetMetadataCount()The metadata associated with the this bulk request.Map<String,String>getMetadataMap()The metadata associated with the this bulk request.StringgetMetadataOrDefault(String key, String defaultValue)The metadata associated with the this bulk request.StringgetMetadataOrThrow(String key)The metadata associated with the this bulk request.StringgetPath()The matching path from TopicSubscription/routes (if specified) for this event.com.google.protobuf.ByteStringgetPathBytes()The matching path from TopicSubscription/routes (if specified) for this event.StringgetPubsubName()The name of the pubsub the publisher sent to.com.google.protobuf.ByteStringgetPubsubNameBytes()The name of the pubsub the publisher sent to.StringgetTopic()The pubsub topic which publisher sent to.com.google.protobuf.ByteStringgetTopicBytes()The pubsub topic which publisher sent to.StringgetType()The type of event related to the originating occurrence.com.google.protobuf.ByteStringgetTypeBytes()The type of event related to the originating occurrence.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getId
String getId()
Unique identifier for the bulk request.
string id = 1;- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
Unique identifier for the bulk request.
string id = 1;- Returns:
- The bytes for id.
-
getEntriesList
List<DaprAppCallbackProtos.TopicEventBulkRequestEntry> getEntriesList()
The list of items inside this bulk request.
repeated .dapr.proto.runtime.v1.TopicEventBulkRequestEntry entries = 2;
-
getEntries
DaprAppCallbackProtos.TopicEventBulkRequestEntry getEntries(int index)
The list of items inside this bulk request.
repeated .dapr.proto.runtime.v1.TopicEventBulkRequestEntry entries = 2;
-
getEntriesCount
int getEntriesCount()
The list of items inside this bulk request.
repeated .dapr.proto.runtime.v1.TopicEventBulkRequestEntry entries = 2;
-
getEntriesOrBuilderList
List<? extends DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder> getEntriesOrBuilderList()
The list of items inside this bulk request.
repeated .dapr.proto.runtime.v1.TopicEventBulkRequestEntry entries = 2;
-
getEntriesOrBuilder
DaprAppCallbackProtos.TopicEventBulkRequestEntryOrBuilder getEntriesOrBuilder(int index)
The list of items inside this bulk request.
repeated .dapr.proto.runtime.v1.TopicEventBulkRequestEntry entries = 2;
-
getMetadataCount
int getMetadataCount()
The metadata associated with the this bulk request.
map<string, string> metadata = 3;
-
containsMetadata
boolean containsMetadata(String key)
The metadata associated with the this bulk request.
map<string, string> metadata = 3;
-
getMetadata
@Deprecated Map<String,String> getMetadata()
Deprecated.UsegetMetadataMap()instead.
-
getMetadataMap
Map<String,String> getMetadataMap()
The metadata associated with the this bulk request.
map<string, string> metadata = 3;
-
getMetadataOrDefault
String getMetadataOrDefault(String key, String defaultValue)
The metadata associated with the this bulk request.
map<string, string> metadata = 3;
-
getMetadataOrThrow
String getMetadataOrThrow(String key)
The metadata associated with the this bulk request.
map<string, string> metadata = 3;
-
getTopic
String getTopic()
The pubsub topic which publisher sent to.
string topic = 4;- Returns:
- The topic.
-
getTopicBytes
com.google.protobuf.ByteString getTopicBytes()
The pubsub topic which publisher sent to.
string topic = 4;- Returns:
- The bytes for topic.
-
getPubsubName
String getPubsubName()
The name of the pubsub the publisher sent to.
string pubsub_name = 5;- Returns:
- The pubsubName.
-
getPubsubNameBytes
com.google.protobuf.ByteString getPubsubNameBytes()
The name of the pubsub the publisher sent to.
string pubsub_name = 5;- Returns:
- The bytes for pubsubName.
-
getType
String getType()
The type of event related to the originating occurrence.
string type = 6;- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
The type of event related to the originating occurrence.
string type = 6;- Returns:
- The bytes for type.
-
getPath
String getPath()
The matching path from TopicSubscription/routes (if specified) for this event. This value is used by OnTopicEvent to "switch" inside the handler.
string path = 7;- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
The matching path from TopicSubscription/routes (if specified) for this event. This value is used by OnTopicEvent to "switch" inside the handler.
string path = 7;- Returns:
- The bytes for path.
-
-