Package version:

Interface DaprSubscriptionBulkSubscribeOptions

Dapr PubSub Bulk Subscription Options.

interface DaprSubscriptionBulkSubscribeOptions {
    enabled?: boolean;
    maxAwaitDurationMs?: number;
    maxMessagesCount?: number;
}

Properties

enabled?: boolean

Enable bulk subscription

maxAwaitDurationMs?: number

Maximum duration in milliseconds to wait before a bulk message is sent to the app.

maxMessagesCount?: number

Maximum number of messages to deliver in a bulk message.