Skip to content
#

event-hubs

Here are 41 public repositories matching this topic...

pattisapu01
pattisapu01 commented Apr 21, 2021

In what area(s)?

/area components (kafka pub/sub)

Describe the feature

The current kafka pub/sub component targets just the minimum interfaces to publish and subscribe. We need an enhancement to the kafka component to support "ResetOffets". This means, we need to be able to invoke an API call to the dapr sidecar to "reset" the current offset to a previous value so that messages can b

gyuwon
gyuwon commented Oct 15, 2017

Envelope 형식을 ScheduledEnvelope 형식으로 포장하는 도우미 메서드를 추가합니다.

예약 시각

var envelope = new Envelope(new SomeCommand());
// 내일 자정에 발행
ScheduledEnvelope scheduled = envelope.Schedule(DateTime.Today.AddDay(1));

지연 시간

var envelope = new Envelope(new SomeCommand());
// 15분 후에 발행
ScheduledEnvelope delayed = envelope.Delay(TimeSpan.FromMinutes(15));
good first issue

Improve this page

Add a description, image, and links to the event-hubs topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the event-hubs topic, visit your repo's landing page and select "manage topics."

Learn more