Beispiel #1
0
        void Send_(object methodIdentity, DeliveryType deliveryType, int channel, SendingOptions sendingOptions)
        {
            RemotingRequest request = GetRequest(methodIdentity, false, !sendingOptions.NoAck);

            request.HasArgument = false;
            this.logger.Debug($"Sending {request}");
            SendMessageCustom(request, deliveryType, channel);
        }
Beispiel #2
0
 public virtual void Send <T>(string methodIdentity, T arg, DeliveryType deliveryType, int channel,
                              SendingOptions sendingOptions) => Send_(methodIdentity, arg, deliveryType, channel, sendingOptions);
Beispiel #3
0
 public virtual void Send(int methodIdentity, DeliveryType deliveryType, int channel,
                          SendingOptions sendingOptions) => Send_(methodIdentity, deliveryType, channel, sendingOptions);