Beispiel #1
0
 public ActionHandlerEntry(MsgType inType, MsgActionHandler inHandler)
 {
     Type    = inType;
     Handler = inHandler;
 }
Beispiel #2
0
 public TypedHandlerEntry(MsgType <T> inType, MsgTypedHandler <T> inHandler)
 {
     Type    = inType;
     Handler = inHandler;
 }
Beispiel #3
0
 public HandlerEntry(MsgType inType, MsgHandler inHandler)
 {
     Type    = inType;
     Handler = inHandler;
 }