public void OnPollNotified(string clientId, short callbackId, EventType eventType)
 {
     if (_listener != null)
     {
         _listener.OnPollNotified(callbackId, eventType);
     }
 }
Exemplo n.º 2
0
 public void OnPollNotified(short callbackId, EventType eventType)
 {
     try
     {
         if (_listener != null)
         {
             _listener.OnPollNotified(callbackId, eventType);
         }
     }
     catch
     {
     }
 }