Mercurial > pub > ImplabNet
view Implab/Messaging/IConsumer.cs @ 256:c52691faaf21 v3
Removed obsolete App, ComponentContainer
Extracted IAsyncComponent interface
Working on RunnableComponent
author | cin |
---|---|
date | Wed, 11 Apr 2018 03:05:14 +0300 |
parents | 7c7e9ad6fe4a |
children |
line wrap: on
line source
using System.Threading; using System.Threading.Tasks; namespace Implab.Messaging { public interface IConsumer<T> { T Receive(CancellationToken ct); Task<T> ReceiveAsync(CancellationToken ct); bool TryReceive(out T message); } }