##// END OF EJS Templates
Implab: added XmlDefaultSeializer (SerializersPool is now obsolete)...
Implab: added XmlDefaultSeializer (SerializersPool is now obsolete) Implab.ServiceHost: rewritten TypeReference (added support for nested types), stable API

File last commit:

r251:7c7e9ad6fe4a v3
r278:6691aff01de1 v3
Show More
IProducer.cs
14 lines | 440 B | text/x-csharp | CSharpLexer
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace Implab.Messaging {
public interface IProducer<T> {
void PostMessage(T message, CancellationToken ct);
Task PostMessageAsync(T message, CancellationToken ct);
void PostMessages(IEnumerable<T> messages, CancellationToken ct);
Task PostMessagesAsync(IEnumerable<T> messages, CancellationToken ct);
}
}