IDispatcher.cs
8 lines
| 158 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | using System; | |
namespace Implab { | |||
public interface IDispatcher { | |||
void Enqueue(Action job); | |||
void Enqueue<T>(Action<T> job, T arg); | |||
} | |||
} |