Skip to content

Commit

Permalink
add in README for scheduled message in servicebus binder (microsoft#741)
Browse files Browse the repository at this point in the history
  • Loading branch information
yiliuTo authored Jul 21, 2020
1 parent 5a1092d commit 49d4432
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ microservice using **Spring Cloud Stream** based on [Azure Service Bus Queue](ht
The Spring Cloud Stream Binder for Azure Service Bus Queue provides the binding implementation for the Spring Cloud Stream.
This implementation uses Spring Integration Service Bus Queue Channel Adapters at its foundation.

### Scheduled Message

This binder supports submitting messages to a queue for delayed processing. Users can send scheduled messages with header `x-delay`
expressing in milliseconds a delay time for the message. The message will be delivered to the respective queues after `x-delay` milliseconds.
### Consumer Group

This binder has no consumer group support since all consumers share one queue.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ microservice using **Spring Cloud Stream** based on [Azure Service Bus Topic](ht
The Spring Cloud Stream Binder for Azure Service Bus Topic provides the binding implementation for the Spring Cloud Stream.
This implementation uses Spring Integration Service Bus Topic Channel Adapters at its foundation.

### Scheduled Message

This binder supports submitting messages to a topic for delayed processing. Users can send scheduled messages with header `x-delay`
expressing in milliseconds a delay time for the message. The message will be delivered to the respective topics after `x-delay` milliseconds.

### Consumer Group

Service Bus Topic provides similar support of consumer group as Apache Kafka, but with slight different logic.
Expand Down

0 comments on commit 49d4432

Please sign in to comment.