public BayeuxConnection(
     string clientId,
     IBayeuxClientContext context)
 {
     this.clientId = clientId;
     this.context  = context;
 }
Exemple #2
0
 public ConnectLoop(
     string connectionType,
     IEnumerable <TimeSpan> reconnectDelays,
     IBayeuxClientContext context)
 {
     this.connectionType  = connectionType;
     this.reconnectDelays = new ReconnectDelays(reconnectDelays);
     this.context         = context;
 }