Package io.dapr.client.domain
Class BulkSubscribeMessage<T>
- java.lang.Object
-
- io.dapr.client.domain.BulkSubscribeMessage<T>
-
public final class BulkSubscribeMessage<T> extends Object
Represents a bulk of messages received from the message bus.
-
-
Constructor Summary
Constructors Constructor Description BulkSubscribeMessage(List<BulkSubscribeMessageEntry<T>> entries, String topic, Map<String,String> metadata)
Instantiate a BulkSubscribeMessage.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BulkSubscribeMessageEntry<T>>
getEntries()
Map<String,String>
getMetadata()
String
getTopic()
-
-
-
Constructor Detail
-
BulkSubscribeMessage
public BulkSubscribeMessage(List<BulkSubscribeMessageEntry<T>> entries, String topic, Map<String,String> metadata)
Instantiate a BulkSubscribeMessage.- Parameters:
entries
- maps aBulkSubscribeMessageEntry
to aBulkSubscribeAppResponseStatus
.topic
- pubSub topic.metadata
- metadata for theBulkSubscribeMessage
-
-