using System; namespace Implab { public interface IDispatcher { void Enqueue(Action job); void Enqueue(Action job, T arg); } }