public override Task DeadLetterAsync(QueueMessage message, string reason, string errorDescription, CancellationToken cancellationToken = default) => throw new NotSupportedException();
Ejemplo n.º 2
0
 /// <summary>
 /// See interface
 /// </summary>
 public abstract Task DeadLetterAsync(QueueMessage message, string reason, string errorDescription, CancellationToken cancellationToken = default);
Ejemplo n.º 3
0
 /// <summary>
 /// See interface
 /// </summary>
 public virtual Task ConfirmMessageAsync(QueueMessage message, CancellationToken cancellationToken = default)
 {
     throw new NotSupportedException();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// See interface
 /// </summary>
 public Task KeepAliveAsync(QueueMessage message, TimeSpan?timeToLive = null, CancellationToken cancellationToken = default) => throw new NotSupportedException();
Ejemplo n.º 5
0
 public override Task ConfirmMessageAsync(QueueMessage message, CancellationToken cancellationToken = default)
 {
     return(Task.FromResult(true));
 }