##// END OF EJS Templates
working on promises
working on promises

File last commit:

r244:eee3e49dd1ff v3
r247:fb70574741a1 v3
Show More
IDispatcher.cs
6 lines | 110 B | text/x-csharp | CSharpLexer
using System;
namespace Implab {
public interface IDispatcher {
void Enqueue(Action job);
}
}