This module provides ways to execute conncurrent operations easily without meddling with the `Thread` class and `Runnable` interface from Java.
# Executing concurrent code via `Dispatch`:
```ceylon
Dispatch.run(() => print("Hello world!"));
```
# Executing concurrent code via `Client` and `Server`s:
```ceylon
class Exec() satisfies Client {
shared void exec() {
MyServer s = MyServer();
s.sendMessage("hi to server", 12345, this);
}
shared actual void receiveObject(Object obj, Integer msgId, ...