virtual void operator()(unique_function< void(ErrorRetT)> OnComplete, ExecutorAddr FnAddr, ArgTs... Args)=0
Asynchronously invoke the executor-side function at FnAddr with the given Args, delivering its result...
std::conditional_t< std::is_void_v< RetT >, Error, Expected< RetT > > ErrorRetT
The result type delivered to callers: Expected<RetT>, or Error when RetT is void, so that dispatch fa...
Runtime-agnostic interface for running a main-like function (int(int argc, char *argv[])) in the exec...