##// END OF EJS Templates
Implemented typereference parser
Implemented typereference parser

File last commit:

r251:7c7e9ad6fe4a v3
r268:0be8a6ae8307 v3
Show More
IConsumer.cs
11 lines | 262 B | text/x-csharp | CSharpLexer
cin
Working on runnable component
r250 using System.Threading;
using System.Threading.Tasks;
namespace Implab.Messaging {
public interface IConsumer<T> {
cin
Prerelease version of RunnableComponent...
r251 T Receive(CancellationToken ct);
Task<T> ReceiveAsync(CancellationToken ct);
cin
Working on runnable component
r250
bool TryReceive(out T message);
}
}