GrpcRetryPolicy constructor

GrpcRetryPolicy({
  1. required int maxRetries,
  2. required Duration perRetryTimeout,
  3. List<GrpcRetryPolicyEvent>? grpcRetryEvents,
  4. List<String>? httpRetryEvents,
  5. List<TcpRetryPolicyEvent>? tcpRetryEvents,
})

Implementation

GrpcRetryPolicy({
  required this.maxRetries,
  required this.perRetryTimeout,
  this.grpcRetryEvents,
  this.httpRetryEvents,
  this.tcpRetryEvents,
});