public FileServerComm(string fileServerGroupName) { groupName = fileServerGroupName; fileServerGroup = new Group(groupName); fileHandler = new FileOperation(); oobhandler = new OOBHandler(); bootstrap = new BootStrap(); transManager = new TransactionManager(); }
public void setBootStrappingTimer(Group _group, BootStrap _parent) { group = _group; parent = _parent; bootStrappingTimer = new System.Timers.Timer(BOOTSTRAPWAIT_TIME); bootStrappingTimer.Elapsed += new ElapsedEventHandler((sender, e) => BootStrappingTimedOutEvent(sender, e, this)); bootStrappingTimer.AutoReset = false; bootStrappingTimer.Enabled = true; }
public FileServerComm(string fileServerGroupName) { groupName = fileServerGroupName; fileServerGroup = new Group (groupName); fileHandler = new FileOperation (); oobhandler = new OOBHandler (); bootstrap = new BootStrap (); transManager = new TransactionManager(); }