Beispiel #1
0
 public ChatRoomStreamingSubscriber(IChatRoomStreaming client)
 {
     this.client = client;
 }
Beispiel #2
0
 public ChatRoomStreaming(IChatRoomStreaming client) : base(client)
 {
 }
Beispiel #3
0
 static void SubscribeAllListner(IChatRoomStreaming client)
 {
     client.OnJoin();
     client.OnLeave();
     client.OnMessageReceived();
 }