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