Asynchronous Processing
Dive in and out of async quickly
With the phantom task manager with help from FAWE aswell, we have the simplest task manager. This can be used anywhere.
new A()
{
@Override
public void async()
{
//Welcome to a new async thread
D d = new D("Async Dispatcher");
d.s("This is async");
new S()
{
@Override
public void sync()
{
d.s("This is sync");
}
};
d.s("Back to async");
}
};