コード例 #1
0
ファイル: Program.cs プロジェクト: perryofpeek/svcexample
 private static TaskManager CreateTaskManager(ApplicationSection configuration)
 {
     const int sleeptimeLoopTime = 100;
     ISleep sleep = new Sleeper();
     IStop stop = new Stop();
     Service service = new Service(configuration.Port);
     return new TaskManager(log, sleeptimeLoopTime, sleep, stop, service);
 }
コード例 #2
0
ファイル: TaskManager.cs プロジェクト: perryofpeek/svcexample
 public TaskManager(ILog log, int sleepTime,ISleep sleep ,IStop stop, Service service)
 {
     TaskManager.log = log;
     this.stop = stop;
     this.service = service;
     this.sleepTime = sleepTime;
     this.sleep = sleep;
 }