Exemple #1
0
        public void WatchToReminder(ActionBusContext ctx, int delayInMinute, string message)
        {
            var a = new WakeUpRequestModel()
            {
                Uuid          = Guid.NewGuid(),
                Binding       = string.Empty,
                DelayInMinute = delayInMinute,
                Message       = message,
            };


            _reminder.Watch(a);
        }
Exemple #2
0
 public void CancelReminder(ActionBusContext ctx, string key)
 {
     _reminder.Cancel(Guid.Parse(key));
 }
Exemple #3
0
 public void Run1(ActionBusContext ctx, string arg1, short arg2, long arg3, ushort arg4, uint arg5, ulong arg6, bool arg7)
 {
 }