Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

메시지 예약 도우미 메서드 추가 #15

Open
gyuwon opened this issue Oct 15, 2017 · 0 comments
Open

메시지 예약 도우미 메서드 추가 #15

gyuwon opened this issue Oct 15, 2017 · 0 comments
Labels
good first issue Good for newcomers

Comments

@gyuwon
Copy link
Member

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));
@gyuwon gyuwon added good first issue Good for newcomers and removed help wanted labels Nov 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant