aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/GRPCCallOptions.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-11 16:17:03 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-11 16:17:03 -0700
commit2c47c953380d0a02df4bc7e4d7772b235cd7da9c (patch)
treeaac027514225a02cab64c8aa0467edcdca2c0697 /src/objective-c/GRPCClient/GRPCCallOptions.h
parent521ffacd7c6b90b884aae72bc342d134e41053fb (diff)
Rename channelId->channelID
Diffstat (limited to 'src/objective-c/GRPCClient/GRPCCallOptions.h')
-rw-r--r--src/objective-c/GRPCClient/GRPCCallOptions.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCallOptions.h b/src/objective-c/GRPCClient/GRPCCallOptions.h
index dcd4de6223..9c6e00fd18 100644
--- a/src/objective-c/GRPCClient/GRPCCallOptions.h
+++ b/src/objective-c/GRPCClient/GRPCCallOptions.h
@@ -181,9 +181,9 @@ typedef NS_ENUM(NSInteger, GRPCTransportType) {
/**
* Channel id allows a call to force creating a new channel (connection) rather than using a cached
- * channel. Calls using distinct channelId will not get cached to the same connection.
+ * channel. Calls using distinct channelID will not get cached to the same connection.
*/
-@property(readonly) NSUInteger channelId;
+@property(readonly) NSUInteger channelID;
@end
@@ -307,16 +307,16 @@ 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. 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.
+ * will not get cached to the same channel. 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;
/**
* Channel id allows a call to force creating a new channel (connection) rather than using a cached
- * channel. Calls using distinct channelId will not get cached to the same connection.
+ * channel. Calls using distinct channelID's will not get cached to the same channel.
*/
-@property(readwrite) NSUInteger channelId;
+@property(readwrite) NSUInteger channelID;
@end