From b11a36e4b3ecb511cb78826a8379a793083a8a76 Mon Sep 17 00:00:00 2001 From: Muxi Yan Date: Thu, 9 May 2019 14:12:39 -0700 Subject: [PATCH] mark marshaller WIP --- src/objective-c/GRPCClient/GRPCCall.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/objective-c/GRPCClient/GRPCCall.h b/src/objective-c/GRPCClient/GRPCCall.h index 1a941571951..cf66531ab0c 100644 --- a/src/objective-c/GRPCClient/GRPCCall.h +++ b/src/objective-c/GRPCClient/GRPCCall.h @@ -182,7 +182,7 @@ extern NSString *const kGRPCTrailersKey; /** * Issued when a decompressed message is received from the server. The message is decompressed, and - * deserialized if a marshaller is provided to the call. + * deserialized if a marshaller is provided to the call (marshaller is work in progress). */ - (void)didReceiveData:(id)data; @@ -271,7 +271,8 @@ extern NSString *const kGRPCTrailersKey; - (void)cancel; /** - * Send a message to the server. The data is subject to marshaller serialization and compression. + * Send a message to the server. The data is subject to marshaller serialization and compression + * (marshaller is work in progress). */ - (void)writeData:(id)data;