Example #1
0
        public async Task ScheduleDelayedPingToSelfAndDeactivate(IGenericPingSelf <T> target, T t, TimeSpan delay)
        {
            await target.ScheduleDelayedPing(this, t, delay);

            DeactivateOnIdle();
        }
Example #2
0
 public Task <T> PingOther(IGenericPingSelf <T> target, T t)
 {
     return(target.Ping(t));
 }
Example #3
0
 public Task <T> PingSelfThroughOther(IGenericPingSelf <T> target, T t)
 {
     return(target.PingOther(this, t));
 }