예제 #1
0
 public PTFC(PTFC <T> producer, Action <Exception> onErrorAction)
 {
     OutQueue           = new ConcurrentQueue <T>();
     this.producer      = producer;
     this.onErrorAction = onErrorAction;
 }
예제 #2
0
 public PTFC(PTFC <T> producer)
 {
     OutQueue      = new ConcurrentQueue <T>();
     this.producer = producer;
 }