Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update WebSockTransport request header and connectingPayload #1224

Merged
Merged
Changes from 1 commit
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
Next Next commit
Add ability to update header values for the websocket connection request
  • Loading branch information
yootsubo committed May 22, 2020
commit 7dc057345272446e0edc951684da9dda10500171
15 changes: 15 additions & 0 deletions Sources/ApolloWebSocket/WebSocketTransport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,21 @@ public class WebSocketTransport {
self.subscriptions.removeValue(forKey: subscriptionId)
}
}

public func updateHeaderValues(_ values: [String: String?]) {
let oldReconnectValue = reconnect.value
self.reconnect.value = false

self.websocket.disconnect()

for (key, value) in values {
self.websocket.request.setValue(value, forHTTPHeaderField: key)
}

self.websocket.connect()

reconnect.value = oldReconnectValue
}
}

// MARK: - HTTPNetworkTransport conformance
Expand Down