Exemplo n.º 1
0
        static void Main()
        {
            Publisher pub = new Publisher();
            Handler hand = new Handler(pub);

            pub.Start(2, 10);
        }
Exemplo n.º 2
0
 public Handler(Publisher pub)
 {
     pub.RaiseTimerEvent += HandleTimerEvent;
 }