2016-12-05 22:41:17 +00:00
|
|
|
|
using System;
|
2016-12-07 09:19:16 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2016-12-05 22:41:17 +00:00
|
|
|
|
|
|
|
|
|
namespace Tapeti
|
|
|
|
|
{
|
|
|
|
|
public interface IConnection : IDisposable
|
|
|
|
|
{
|
2016-12-07 09:19:16 +00:00
|
|
|
|
Task<ISubscriber> Subscribe();
|
2016-12-05 22:41:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|