I am using Armeria grpc client as follows:
Clients.builder("gproto+http://....")
.decorator(RetryingClient.newDecorator(retryRule, maxAttempts, perAttemptTimeout))
This enforces this retry behavior across all outgoing requests.
Is there a way to provide different retry parameters for each grpc method offered by the target service?