2 implementations of StartPipe
Microsoft.ML.Core (1)
Environment\HostEnvironmentBase.cs (1)
488
public IPipe<TMessage>
StartPipe
<TMessage>(string name)
Microsoft.ML.Data (1)
MLContext.cs (1)
169
IPipe<TMessage> IChannelProvider.
StartPipe
<TMessage>(string name) => _env.StartPipe<TMessage>(name);
5 references to StartPipe
Microsoft.ML.Core (1)
Data\ServerChannel.cs (1)
63
using (var pipe = provider.
StartPipe
<IPendingBundleNotification>("Server"))
Microsoft.ML.Data (3)
Commands\DataCommand.cs (2)
111
using (var pipe = prov.
StartPipe
<TelemetryMessage>("TelemetryPipe"))
141
using (var pipe = prov.
StartPipe
<TelemetryMessage>("TelemetryPipe"))
Utilities\TimerScope.cs (1)
51
using (var pipe = _host.
StartPipe
<TelemetryMessage>("TelemetryPipe"))
Microsoft.ML.Maml (1)
MAML.cs (1)
106
using (var telemetryPipe = mainHost.
StartPipe
<TelemetryMessage>("TelemetryPipe"))