aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/GRPCCallOptions.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-11 14:44:55 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-11 14:44:55 -0700
commit521ffacd7c6b90b884aae72bc342d134e41053fb (patch)
treee41d793fafdd33f0a7cf919be7f96ebad610af39 /src/objective-c/GRPCClient/GRPCCallOptions.h
parent0fc040d19acc960ed3ab331ed92b38b43d32a284 (diff)
Add example to channelPoolDomain
Diffstat (limited to 'src/objective-c/GRPCClient/GRPCCallOptions.h')
-rw-r--r--src/objective-c/GRPCClient/GRPCCallOptions.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCallOptions.h b/src/objective-c/GRPCClient/GRPCCallOptions.h
index ea7c1bf22d..dcd4de6223 100644
--- a/src/objective-c/GRPCClient/GRPCCallOptions.h
+++ b/src/objective-c/GRPCClient/GRPCCallOptions.h
@@ -307,7 +307,9 @@ typedef NS_ENUM(NSInteger, GRPCTransportType) {
/**
* A string that specify the domain where channel is being cached. Channels with different domains
- * will not get cached to the same connection.
+ * will not get cached to the same connection. For example, a gRPC example app may use the channel
+ * pool domain 'io.grpc.example' so that its calls do not reuse the channel created by other modules
+ * in the same process.
*/
@property(copy, readwrite) NSString *channelPoolDomain;