Contour.Transport.RabbitMQ.Topology.QueueBuilder.WithTtl C# (CSharp) Method

WithTtl() public method

Добавляет в построитель настройки времени жизни сообщений в очереди.
public WithTtl ( System.TimeSpan ttl ) : QueueBuilder
ttl System.TimeSpan Время жизни сообщений в очереди.
return QueueBuilder
        public QueueBuilder WithTtl(TimeSpan ttl)
        {
            this.Instance.Ttl = ttl;
            return this;
        }