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