Mercurial > pub > ImplabNet
view Implab/IDispatcher.cs @ 250:9f63dade3a40 v3
Working on runnable component
author | cin |
---|---|
date | Thu, 01 Feb 2018 02:43:35 +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); } }