コード例 #1
0
 public void SetReconnectAttemptEventListener(ReconnectAttemptListener callback)
 {
     reconnectAttemptCallback = callback;
 }
コード例 #2
0
ファイル: RTServiceImpl.cs プロジェクト: fuhye/.NET-SDK
 public void RemoveReconnectAttemptListener(ReconnectAttemptListener listener)
 {
     reconnectListeners.Remove(listener);
 }
コード例 #3
0
ファイル: AsyncRTClient.cs プロジェクト: fuhye/.NET-SDK
 public void SetReconnectAttemptEventListener(ReconnectAttemptListener callback)
 {
     rtClient.SetReconnectAttemptEventListener(callback);
 }
コード例 #4
0
ファイル: RTServiceImpl.cs プロジェクト: fuhye/.NET-SDK
 public void AddReconnectAttemptListener(ReconnectAttemptListener reconnectAttemptHandler)
 {
     reconnectListeners.Add(reconnectAttemptHandler);
 }
コード例 #5
0
 public void SetReconnectAttemptEventListener(ReconnectAttemptListener callback)
 {
     throw new NoSocketIOException();
 }