Async task jobs

Ah ok, it would be nice to support async methods yes.

Anyway I wrap my async methods inside another method like this :

public void MyMethod()
{
    MyMethodAsync().Wait();
}

What do you think about this way to call it ?