IPipe<TMessage> Interface

Definition

A generic information pipe. Note that pipes are disposable. Generally, Done should be called before disposing to signal a normal shut-down of the pipe, as opposed to an aborted completion.

public interface IPipe<TMessage> : IDisposable, Microsoft.ML.Runtime.IExceptionContext
type IPipe<'Message> = interface
    interface IExceptionContext
    interface IDisposable
Public Interface IPipe(Of TMessage)
Implements IDisposable, IExceptionContext

Type Parameters

TMessage
Derived
Implements

Properties

ContextDescription

A string describing the context itself.

(Inherited from IExceptionContext)

Methods

Process<TException>(TException) (Inherited from IExceptionContext)
Send(TMessage)

The caller relinquishes ownership of the msg object.

Applies to