pub trait Service: Debug + Send + Sync { // Required method fn addresses(&self, port: &str) -> Vec<String>; }
Describes a running service managed by an Orchestrator.
Orchestrator
Given the name of a port, returns the addresses for each of the service’s processes, in order.
Panics if port does not name a valid port.
port