public CommandHandler(SessionStorage sessionStorage, HeartbeatStorage heartbeatStorage, ILog log)
 {
     this.sessionStorage   = sessionStorage;
     this.heartbeatStorage = heartbeatStorage;
     this.log = log.ForContext(GetType().Name);
 }
Exemple #2
0
 public AdminServer(int port, SessionStorage sessionStorage, HeartbeatStorage heartbeatStorage)
 {
     this.port             = port;
     this.sessionStorage   = sessionStorage;
     this.heartbeatStorage = heartbeatStorage;
 }
 public AdminSession(Link link, SessionStorage sessionStorage, HeartbeatStorage heartbeatStorage)
 {
     this.link             = link;
     this.sessionStorage   = sessionStorage;
     this.heartbeatStorage = heartbeatStorage;
 }