annotate Implab/IDispatcher.cs @ 244:eee3e49dd1ff v3

working on promises
author cin
date Thu, 25 Jan 2018 19:09:16 +0300
parents
children 5cb4826c2c2a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
244
eee3e49dd1ff working on promises
cin
parents:
diff changeset
1 using System;
eee3e49dd1ff working on promises
cin
parents:
diff changeset
2
eee3e49dd1ff working on promises
cin
parents:
diff changeset
3 namespace Implab {
eee3e49dd1ff working on promises
cin
parents:
diff changeset
4 public interface IDispatcher {
eee3e49dd1ff working on promises
cin
parents:
diff changeset
5 void Enqueue(Action job);
eee3e49dd1ff working on promises
cin
parents:
diff changeset
6 }
eee3e49dd1ff working on promises
cin
parents:
diff changeset
7 }