##// END OF EJS Templates
Unity xml configuration, alpha2
Unity xml configuration, alpha2

File last commit:

r251:7c7e9ad6fe4a v3
r274:22629bf26121 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);
}
}