Add a sequential executor
We should add 2 classes:
- A blocking executor whos
submitmethod literally just calls the function and sets the result on a new future before returning it A non-blocking executor that just calls the function in a new coroutine and returns a future to the result
Edited by Bas Nijholt