##// END OF EJS Templates
container configuration docs
container configuration docs

File last commit:

r251:7c7e9ad6fe4a v3
r276:b4e0f81c7425 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);
}
}