Package io.dapr.client.domain
Class BulkSubscribeMessageEntry<T>
- java.lang.Object
-
- io.dapr.client.domain.BulkSubscribeMessageEntry<T>
-
- Type Parameters:
T
- Type of event.
public final class BulkSubscribeMessageEntry<T> extends Object
Represents a single event from aBulkSubscribeMessage
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getContentType()
String
getEntryId()
T
getEvent()
Map<String,String>
getMetadata()
-
-
-
Constructor Detail
-
BulkSubscribeMessageEntry
public BulkSubscribeMessageEntry(String entryId, T event, String contentType, Map<String,String> metadata)
Instantiate a BulkPubSubMessageEntry.- Parameters:
entryId
- unique identifier for the event.event
- pubSub event.contentType
- content type of the event.metadata
- metadata for the event.
-
-