예제 #1
0
파일: GC.cs 프로젝트: DarkHarlock/Orleankka
        public void KeepAlive(ActorEndpoint endpoint)
        {
            if (timeout == TimeSpan.Zero)
                return;

            endpoint.DelayDeactivation(timeout);
        }
예제 #2
0
        public void KeepAlive(ActorEndpoint endpoint)
        {
            if (timeout == TimeSpan.Zero)
            {
                return;
            }

            endpoint.DelayDeactivation(timeout);
        }
예제 #3
0
 void IActivationService.DelayDeactivation(TimeSpan period)
 {
     endpoint.DelayDeactivation(period);
 }