コード例 #1
0
 /// <summary>
 /// Build an ouput that is assumed to have valid output.
 /// </summary>
 public ThreadedWorkProduct(TO output)
 {
     ResultType = ThreadedWorkResultType.OutputProduced;
     Output     = output;
 }
コード例 #2
0
 public ThreadedWorkProduct(TO output, ThreadedWorkResultType resultType)
 {
     Output     = output;
     ResultType = resultType;
 }