1 instantiation of ServerChannel
Microsoft.ML.Core (1)
Data\ServerChannel.cs (1)
65var sc = new ServerChannel(provider, identifier);
14 references to ServerChannel
Microsoft.ML.Core (9)
Data\ServerChannel.cs (9)
21internal sealed class ServerChannel : ServerChannel.IPendingBundleNotification, IDisposable 40private ServerChannel ThisIfActiveOrNull => _toPublish == null ? null : this; 59public static ServerChannel Start(IChannelProvider provider, string identifier) 65var sc = new ServerChannel(provider, identifier); 194/// When a <see cref="ServerChannel"/> is created, the creation method will send an implementation 237internal Bundle(ServerChannel sch) 256/// Convenience method for <see cref="ServerChannel.Start"/> that looks more idiomatic to typical 264public static ServerChannel StartServerChannel(this IChannelProvider provider, string identifier) 268return ServerChannel.Start(provider, identifier);
Microsoft.ML.Data (3)
Commands\DataCommand.cs (3)
48public ServerChannel.IServerFactory Server; 68private readonly ServerChannel.IServerFactory _serverFactory; 70protected ServerChannel.IServer InitServer(IChannel ch)
Microsoft.ML.FastTree (2)
GamModelParameters.cs (2)
564Server = ServerChannel.CreateDefaultServerFactoryOrNull(env); 926using (var sch = Host.StartServerChannel("predictor/gam"))