Esempio n. 1
0
 public ScheduleMessage(DomainEvent eventToSchedule, ScheduleKey key, DateTime runAt, IMessageMetadata eventMetadata = null)
 {
     Event         = eventToSchedule;
     Key           = key;
     RunAt         = runAt;
     EventMetadata = eventMetadata;
 }
Esempio n. 2
0
 public ScheduleCommand(Command command, ScheduleKey key, ExtendedExecutionOptions options, IMessageMetadata commandMetadata = null)
 {
     Command         = command;
     Key             = key;
     Options         = options;
     CommandMetadata = commandMetadata;
 }
Esempio n. 3
0
 public AlreadyScheduled(ScheduleKey key)
 {
     Key = key;
 }
Esempio n. 4
0
 public Unschedule(ScheduleKey key)
 {
     Key = key;
 }