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

File last commit:

r251:7c7e9ad6fe4a v3
r268:0be8a6ae8307 v3
Show More
IProducer.cs
14 lines | 440 B | text/x-csharp | CSharpLexer
cin
Working on runnable component
r250 using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace Implab.Messaging {
public interface IProducer<T> {
cin
Prerelease version of RunnableComponent...
r251 void PostMessage(T message, CancellationToken ct);
cin
Working on runnable component
r250 Task PostMessageAsync(T message, CancellationToken ct);
cin
Prerelease version of RunnableComponent...
r251 void PostMessages(IEnumerable<T> messages, CancellationToken ct);
cin
Working on runnable component
r250 Task PostMessagesAsync(IEnumerable<T> messages, CancellationToken ct);
}
}