コード例 #1
0
 public ConstructionTimerEnd(
     ICacheKeyGenerator cacheKeyGenerator,
     Config.DebugSettings debugSettings,
     ILog log)
 {
     _cacheKeyGenerator = cacheKeyGenerator;
     _debugSettings     = debugSettings;
     _log = log;
 }
コード例 #2
0
 public ConstructionTimerStart(
     ICacheKeyGenerator cacheKeyGenerator,
     ILog log,
     Config.DebugSettings debugSettings)
 {
     _cacheKeyGenerator = cacheKeyGenerator;
     _log           = log;
     _debugSettings = debugSettings;
     Name           = "ConstructionTimerStart";
 }
コード例 #3
0
 public ProfiledConstructionTimerStart(
     ICacheKeyGenerator cacheKeyGenerator,
     Config.DebugSettings debugSettings,
     AbstractObjectConstructionTask inner)
 {
     _cacheKeyGenerator = cacheKeyGenerator;
     _debugSettings     = debugSettings;
     Name   = "ConstructionTimerStart";
     _inner = inner;
 }
コード例 #4
0
 public ConstructionTimerStart(
     ICacheKeyGenerator cacheKeyGenerator, 
     ILog log,
        Config.DebugSettings debugSettings)
 {
     _cacheKeyGenerator = cacheKeyGenerator;
     _log = log;
     _debugSettings = debugSettings;
     Name = "ConstructionTimerStart";
 }