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