TPL Dataflow提供了一个TransformBlock
用于转换输入的方法,例如:
var tb = new TransformBlock<int, int>(i => i * 2);
是否可以不输出某些输入,例如,如果输入未通过某些验证测试?
var tb = new TransformBlock<InputType, OutputType>(i =>
{
if (!ValidateInput(i))
{
// Do something to not output anything for this input
}
// Normal output
}
如果这不可能,那么实现这一目标的最佳模式是什么?
像下面这样的东西?
BufferBlock<OutputType> output = new BufferBlock<OutputType>();
var ab = new ActionBlock<InputType>(i =>
{
if (ValidateInput(i))
{
output.Post(MyTransform(i));
}
}