Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 509 Bytes

Summary.Pipes.Logging.LoggedPipe{I,O}.md

File metadata and controls

17 lines (12 loc) · 509 Bytes
public class LoggedPipe<I, O> : IPipe<I, O>

A IPipe<I, O> whose output is logged using the provided logger.

Logging is implemented by simply beginning a new scope with the given message.

Methods

public Task<O> Run(I input)

Asynchronously processes the specified input and returns the output.