public AmqpReceiver(ILogger logger, AmqpSendReceiveBase owner, string entityPath, MessageCallback callback = null, int credit = 5) : base(owner) { Logger = logger; EntityPath = entityPath; Callback = callback; Credit = credit; }
protected AmqpSendReceiveBase(AmqpSendReceiveBase owner) { this._amqpSessionOwner = owner; }
public AmqpSender(ILogger logger, AmqpSendReceiveBase sessionOwner, string entityPath) : base(sessionOwner) { Logger = logger; EntityPath = entityPath; }