using System.Threading.Tasks; namespace Tapeti { /// /// Manages subscriptions to queues as configured by the bindings. /// public interface ISubscriber { /// /// Starts consuming from the subscribed queues if not already started. /// Task Resume(); } }