aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/ProtoRPC/ProtoService.m
diff options
context:
space:
mode:
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 =