aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/private/GRPCChannelPool.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-17 10:33:38 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-17 11:41:59 -0700
commit677ab86b4a8567197550d6969a4d5bd76b8206e1 (patch)
tree410303f6209968cdac92cc5a9f5c53c95ad96ef7 /src/objective-c/GRPCClient/private/GRPCChannelPool.h
parentda42aa1c1ba38a12450e6b75b20281d6603b3d7e (diff)
rename createChannel -> createChannelCallback
Diffstat (limited to 'src/objective-c/GRPCClient/private/GRPCChannelPool.h')
-rw-r--r--src/objective-c/GRPCClient/private/GRPCChannelPool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/private/GRPCChannelPool.h b/src/objective-c/GRPCClient/private/GRPCChannelPool.h
index 5ceb0b6d82..48c35eacb0 100644
--- a/src/objective-c/GRPCClient/private/GRPCChannelPool.h
+++ b/src/objective-c/GRPCClient/private/GRPCChannelPool.h
@@ -56,7 +56,7 @@ NS_ASSUME_NONNULL_BEGIN
* createChannel then add it in the pool. If the channel exists, increase its reference count.
*/
- (GRPCChannel *)channelWithConfiguration:(GRPCChannelConfiguration *)configuration
- createChannel:(GRPCChannel * (^)(void))createChannel;
+ createChannelCallback:(GRPCChannel * (^)(void))createChannelCallback;
/** Decrease a channel's refcount. */
- (void)unrefChannelWithConfiguration:configuration;