Ejemplo n.º 1
0
 public void CauseEvent(RAEventType type, RAEventArgs e = null)
 {
     _EventsToTriggerOnMainThread.Enqueue(new Tuple<RAEventType, RAEventArgs>(type, e));
 }
Ejemplo n.º 2
0
 public void UnregisterHandler(RAEventType type, EventHandler handler)
 {
     _SubscribedEvents.RemoveHandler(type.ToString(), handler);
 }
Ejemplo n.º 3
0
 public void RegisterHandler(RAEventType type, EventHandler handler)
 {
     _SubscribedEvents.AddHandler(type.ToString(), handler);
 }
Ejemplo n.º 4
0
 public void CauseEvent(RAEventType type, RAEventArgs e = null)
 {
     _EventsToTriggerOnMainThread.Enqueue(new Tuple <RAEventType, RAEventArgs>(type, e));
 }
Ejemplo n.º 5
0
 public void UnregisterHandler(RAEventType type, EventHandler handler)
 {
     _SubscribedEvents.RemoveHandler(type.ToString(), handler);
 }
Ejemplo n.º 6
0
 public void RegisterHandler(RAEventType type, EventHandler handler)
 {
     _SubscribedEvents.AddHandler(type.ToString(), handler);
 }