public PTFC(PTFC <T> producer, Action <Exception> onErrorAction) { OutQueue = new ConcurrentQueue <T>(); this.producer = producer; this.onErrorAction = onErrorAction; }
public PTFC(PTFC <T> producer) { OutQueue = new ConcurrentQueue <T>(); this.producer = producer; }