Exemplo n.º 1
0
 public static IDisposable Subscribe <T>(this RioServer @this, MessageHandler <T> handler)
 {
     return(@this.Subscribe <T>(handler));
 }
Exemplo n.º 2
0
 public static IDisposable Subscribe <T>(this RioServer @this, Action <int, T> handler)
 {
     return(@this.Subscribe <T>(new ServerHandler <T>(handler)));
 }