Пример #1
0
        public void TestMethod()
        {
            const string MachineName = "COMP";
            var          client      = new SchedulerClient <IPingPongService>(10);

            client
            .Setup(c => c.Ping(MachineName, DateTime.Now))
            .Callback(service => Console.WriteLine("Callback: {0} - {1}", MachineName, DateTime.Now));
        }
Пример #2
0
        static void Main(string[] args)
        {
            // todo@onuar: öylesine bir proxy denemesi yaptım. host çalışıyor mu diye baktım.
            // var proxy = new PingProxyClient("http://localhost:8090");
            // proxy.Ping("denem", DateTime.Now);

            var schedulerClient = new SchedulerClient <IPingService>(10);

            schedulerClient
            .Setup(service => service.Ping("SCHParam", DateTime.Now))
            .Callback(o => Console.WriteLine("Callback: {0}", DateTime.Now));

            Console.ReadLine();
        }