コード例 #1
0
ファイル: Task.cs プロジェクト: hkiaipc/c2
 /// <summary>
 /// 
 /// </summary>
 /// <param name="opera"></param>
 public Task(Device device, Opera opera, Strategy strategy, TimeSpan timeout)
 {
     this.Device = device;
     this.Opera = opera;
     this.Strategy = strategy;
     this.Timeout = timeout;
 }
コード例 #2
0
ファイル: Task.cs プロジェクト: hkiaipc/yh
 /// <summary>
 /// 
 /// </summary>
 /// <param name="opera"></param>
 public Task(Device device, Opera opera, Strategy strategy)
 {
     this.Device = device;
     this.Opera = opera;
     this.Strategy = strategy;
 }
コード例 #3
0
ファイル: Task.cs プロジェクト: hkiaipc/c2
 public Task(Device device, Opera opera, Strategy strategy)
     : this(device, opera, strategy, TaskDefine.DefaultTaskTimeout)
 {
 }