Mark van Renswoude
2e2a77a7ae
- Consume calls still in the TapetiClient task queue while it is reconnecting would not be cancelled, but new calls were added as well after the reconnect - Unrelated but useful: added LocalPort and Disconnect event to logging
18 lines
407 B
C#
18 lines
407 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tapeti
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Manages subscriptions to queues as configured by the bindings.
|
|
/// </summary>
|
|
public interface ISubscriber : IDisposable
|
|
{
|
|
/// <summary>
|
|
/// Starts consuming from the subscribed queues if not already started.
|
|
/// </summary>
|
|
Task Resume();
|
|
}
|
|
}
|