We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Envelope 형식을 ScheduledEnvelope 형식으로 포장하는 도우미 메서드를 추가합니다.
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));
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Envelope
형식을ScheduledEnvelope
형식으로 포장하는 도우미 메서드를 추가합니다.예약 시각
지연 시간
The text was updated successfully, but these errors were encountered: