pub trait ConcurrencyDecider: Send + Sync {
// Required method
fn concurrency(&self, tool_name: &str) -> Concurrency;
}Expand description
Decide concurrency for a tool by name.
Required Methods§
Sourcefn concurrency(&self, tool_name: &str) -> Concurrency
fn concurrency(&self, tool_name: &str) -> Concurrency
Return the concurrency class for a tool by name.