Type Alias orchestrator::executor::Executor

source ·
pub type Executor<S> = Box<dyn Send + Sync + Fn(S, String) -> ExecutorFuture<S>>;
Expand description

Type definition to simplify additional types: An exectutor is a function that takes a source code as input and returns an ExecutorFuture. This type boesx that function.

Aliased Type§

struct Executor<S>(/* private fields */);