##// END OF EJS Templates
Added IObservable to TraceRegistry
Added IObservable to TraceRegistry

File last commit:

r251:7c7e9ad6fe4a v3
r288:90cef6117ced v3
Show More
IConsumer.cs
11 lines | 262 B | text/x-csharp | CSharpLexer
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);
}
}