コード例 #1
0
ファイル: SelfConnection.cs プロジェクト: iwanhae/localStar
 public SelfConnection(NodeConnection connection, int healthChkPeriod = 10)
 {
     this.nodeConnection = connection;
     HealthCheck(null);
     timer = new Timer(HealthCheck, null, healthChkPeriod * 1000, healthChkPeriod * 1000);
 }
コード例 #2
0
 public static void addNodeConnection(NodeConnection nodeConnection)
 {
     Connections[nodeConnection.nodeId] = nodeConnection;
 }