forked from grpc/grpc-swift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Motivation: In grpc#1158 we pulled connection creation of the connection manager into a channel provider in order to loosen the coupling between the connection manager and `ClientConnection`. This change further decouples the `ConnectionManager` from the channel provider pulling out the relevant configuration into a `DefaultChannelProvider`. Modifications: - Refactor `ClientConnection.ChannelProvider` to rely on the bits of configuration it actually requires rather than `ClientConnection.Configuration` - Rename to `DefaultChannelProvider` Result: We can configure channels for the `ConnectionManager` without being tied to `ClientConnection`.
- Loading branch information
Showing
3 changed files
with
80 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters