public Task <IlmRetryResponse> RetryAsync(Elastic.Clients.Elasticsearch.IndexName index, Action <IlmRetryRequestDescriptor> configureRequest = null, CancellationToken cancellationToken = default) { var descriptor = new IlmRetryRequestDescriptor(index); configureRequest?.Invoke(descriptor); descriptor.BeforeRequest(); return(DoRequestAsync <IlmRetryRequestDescriptor, IlmRetryResponse>(descriptor)); }
public IlmRetryResponse Retry(Elastic.Clients.Elasticsearch.IndexName index, Action <IlmRetryRequestDescriptor> configureRequest = null) { var descriptor = new IlmRetryRequestDescriptor(index); configureRequest?.Invoke(descriptor); descriptor.BeforeRequest(); return(DoRequest <IlmRetryRequestDescriptor, IlmRetryResponse>(descriptor)); }