You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Program
{
static void Main()
{
var manager = new RoleTaskManager<object>(new Factory());
manager.OnStart(config);
var host = new JobHost();
manager.Run();
host.RunAndBlock();
manager.OnStop();
}
}