Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 419 Bytes

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

File metadata and controls

15 lines (11 loc) · 419 Bytes
public class TeePipe<I, O> : IPipe<I, O>

A IPipe<I, O> that invokes an action on the output of the pipe each time it's executed.

Methods

public async Task<O> Run(I input)

Asynchronously processes the specified input and returns the output.