示例#1
0
 public Job(DistributedJob.Blueprint blueprint, int nodeID, bool redundant, bool balanced, bool awake) : base(blueprint)
 {
     this.NodeID    = nodeID;
     this.Redundant = redundant;
     this.Balanced  = balanced;
     this.Awake     = awake;
 }
示例#2
0
 public AssignJob(DistributedJob.Blueprint job) : base()
 {
     this.Job = job;
 }
示例#3
0
 public Assign(DistributedJob.Blueprint blueprint) : base()
 {
     this.Blueprint = blueprint;
 }
示例#4
0
 public Worker(DistributedJob.Blueprint blueprint)
 {
     this.job = new DistributedJob.Custom(blueprint);
 }