Beispiel #1
0
 public RpcManager(RpcServerOptions options = null)
     : base(options)
 {
 }
Beispiel #2
0
 internal RpcServer(RpcServerOptions options = null)
 {
     _id      = Interlocked.Increment(ref IdSeed);
     _options = options?.Clone() ?? RpcServerOptions.Default;
 }