Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
290 changes: 0 additions & 290 deletions Sources/GRPCCore/Call/Client/ClientRPCExecutionConfiguration.swift

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extension ClientRPCExecutor {
@usableFromInline
let transport: Transport
@usableFromInline
let policy: HedgingPolicy
let policy: GRPCClient.MethodConfiguration.HedgingPolicy
@usableFromInline
let timeout: Duration?
@usableFromInline
Expand All @@ -45,7 +45,7 @@ extension ClientRPCExecutor {
@inlinable
init(
transport: Transport,
policy: HedgingPolicy,
policy: GRPCClient.MethodConfiguration.HedgingPolicy,
timeout: Duration?,
interceptors: [any ClientInterceptor],
serializer: Serializer,
Expand Down Expand Up @@ -420,7 +420,7 @@ extension ClientRPCExecutor.HedgingExecutor {
private(set) var hasUsableResponse: Bool

@inlinable
init(policy: HedgingPolicy) {
init(policy: GRPCClient.MethodConfiguration.HedgingPolicy) {
self._maximumAttempts = policy.maximumAttempts
self.attempt = 1
self.hasUsableResponse = false
Expand Down
Loading