예제 #1
0
 public VoiceGatewayHeart(int interval, Gateway gateway) : base(interval, gateway)
 {
 }
예제 #2
0
파일: Heart.cs 프로젝트: cmorley191/mjolnir
        public Heart(int rate, Gateway gateway)
        {
            this.gateway = gateway;

            Task.Run(() => HeartAgent(rate));
        }