public interface IPipe<in I, O>
An asynchronous pipe that can transform an input to the output.
I
: The type of the input of the pipe.O
: The type of the output of the pipe.
Task<O> Run(I input)
Asynchronously processes the specified input and returns the output.