aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/ProtoRPC/ProtoService.m
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-12-19 14:09:56 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-12-19 14:09:56 -0800
commitc5f84c5cb8830ad5ac4a9f097804308adce204be (patch)
tree7434a239f33acfd9ea3417b03263b2bdab87d60e /src/objective-c/ProtoRPC/ProtoService.m
parent0de27b5d2955c2d19a998e133580b721836676da (diff)
Batch fix
Diffstat (limited to 'src/objective-c/ProtoRPC/ProtoService.m')
-rw-r--r--src/objective-c/ProtoRPC/ProtoService.m13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/objective-c/ProtoRPC/ProtoService.m b/src/objective-c/ProtoRPC/ProtoService.m
index b7c7fadbcf..80a1f2f226 100644
--- a/src/objective-c/ProtoRPC/ProtoService.m
+++ b/src/objective-c/ProtoRPC/ProtoService.m
@@ -58,11 +58,14 @@
return self;
}
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wobjc-designated-initializers"
+// Do not call designated initializer here due to nullability incompatibility. This method is from
+// old API and does not assert on nullability of the parameters.
+
- (instancetype)initWithHost:(NSString *)host
packageName:(NSString *)packageName
serviceName:(NSString *)serviceName {
- // Do not call designated initializer here due to nullability incompatibility. This method is from
- // old API and does not assert on nullability of the parameters.
if ((self = [super init])) {
_host = [host copy];
_packageName = [packageName copy];
@@ -72,6 +75,8 @@
return self;
}
+#pragma clang diagnostic pop
+
- (GRPCProtoCall *)RPCToMethod:(NSString *)method
requestsWriter:(GRXWriter *)requestsWriter
responseClass:(Class)responseClass
@@ -87,7 +92,7 @@
- (GRPCUnaryProtoCall *)RPCToMethod:(NSString *)method
message:(id)message
- responseHandler:(id<GRPCProtoResponseCallbacks>)handler
+ responseHandler:(id<GRPCProtoResponseHandler>)handler
callOptions:(GRPCCallOptions *)callOptions
responseClass:(Class)responseClass {
GRPCProtoMethod *methodName =
@@ -104,7 +109,7 @@
}
- (GRPCStreamingProtoCall *)RPCToMethod:(NSString *)method
- responseHandler:(id<GRPCProtoResponseCallbacks>)handler
+ responseHandler:(id<GRPCProtoResponseHandler>)handler
callOptions:(GRPCCallOptions *)callOptions
responseClass:(Class)responseClass {
GRPCProtoMethod *methodName =