##// 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
ISession.cs
13 lines | 323 B | text/x-csharp | CSharpLexer
namespace Implab.Messaging {
public interface ISession {
/// <summary>
/// Starts message consumers, call this method after all adapters are ready
/// </summary>
void Start();
/// <summary>
/// Stops message consumers
/// </summary>
void Stop();
}
}