示例#1
0
        public RemoteActors(IRemoteActorChannel channel)
        {
            Guard.NotNull(channel, nameof(channel));

            this.channel = channel;
        }
示例#2
0
            public Sender(IRemoteActorChannel channel, string recipient)
            {
                this.recipient = recipient;

                this.channel = channel;
            }