public CommandHandler(SessionStorage sessionStorage, HeartbeatStorage heartbeatStorage, ILog log) { this.sessionStorage = sessionStorage; this.heartbeatStorage = heartbeatStorage; this.log = log.ForContext(GetType().Name); }
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; }