Ejemplo n.º 1
0
 public static IDisposable Subscribe <T>(this RioClient @this, Action <T> handler)
 {
     return(@this.Subscribe <T>(new ClientHandler <T>(handler)));
 }
Ejemplo n.º 2
0
 public static IDisposable Subscribe <T>(this RioClient @this, MessageHandler <T> handler)
 {
     return(@this.Subscribe <T>(handler));
 }