Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 439 Bytes

Summary.Pipes.IPipe{I,O}.md

File metadata and controls

19 lines (14 loc) · 439 Bytes
public interface IPipe<in I, O>

An asynchronous pipe that can transform an input to the output.

Type Parameters

  • I: The type of the input of the pipe.
  • O: The type of the output of the pipe.

Methods

 Task<O> Run(I input)

Asynchronously processes the specified input and returns the output.