macro_rules! dispatch_service_sync {
(
$service:ty,
$hash_by:ident,
$(
$method:ident ($request:ty) -> $reply:ty,
)*
) => { ... };
}Expand description
Similar to the dispatch_service_async but in sync mode.