Mercurial > pub > ImplabNet
view Implab/IDispatcher.cs @ 275:6fefd5811b9b v3
refactoring
author | cin |
---|---|
date | Fri, 27 Apr 2018 16:57:30 +0300 |
parents | 5cb4826c2c2a |
children |
line wrap: on
line source
using System; namespace Implab { public interface IDispatcher { void Enqueue(Action job); void Enqueue<T>(Action<T> job, T arg); } }