view Implab/IDispatcher.cs @ 268:0be8a6ae8307 v3

Implemented typereference parser
author cin
date Sun, 22 Apr 2018 15:29:10 +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);
    }
}