aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/ProtoRPC/ProtoRPC.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-11-15 14:00:51 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-11-15 14:00:51 -0800
commit57464321214a5ce34e5de1868ce4eb3624ebdebb (patch)
treebd7ec38eeb26eff52fd605085377b46e0b3d3218 /src/objective-c/ProtoRPC/ProtoRPC.h
parent8a762d447813db1b1c3fe52b24e638581235460e (diff)
Fix handler release - Part 1
Diffstat (limited to 'src/objective-c/ProtoRPC/ProtoRPC.h')
-rw-r--r--src/objective-c/ProtoRPC/ProtoRPC.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/objective-c/ProtoRPC/ProtoRPC.h b/src/objective-c/ProtoRPC/ProtoRPC.h
index dc776368a8..569aaa79e4 100644
--- a/src/objective-c/ProtoRPC/ProtoRPC.h
+++ b/src/objective-c/ProtoRPC/ProtoRPC.h
@@ -31,13 +31,11 @@ NS_ASSUME_NONNULL_BEGIN
@optional
/**
- * Issued when initial metadata is received from the server. The task must be scheduled onto the
- * dispatch queue in property \a dispatchQueue. */
+ * Issued when initial metadata is received from the server.
- (void)receivedInitialMetadata:(nullable NSDictionary *)initialMetadata;
/**
* Issued when a message is received from the server. The message is the deserialized proto object.
- * The task must be scheduled onto the dispatch queue in property \a dispatchQueue.
*/
- (void)receivedProtoMessage:(nullable GPBMessage *)message;
@@ -45,8 +43,7 @@ NS_ASSUME_NONNULL_BEGIN
* Issued when a call finished. If the call finished successfully, \a error is nil and \a
* trainingMetadata consists any trailing metadata received from the server. Otherwise, \a error
* is non-nil and contains the corresponding error information, including gRPC error codes and
- * error descriptions. The task must be scheduled onto the dispatch queue in property
- * \a dispatchQueue.
+ * error descriptions.
*/
- (void)closedWithTrailingMetadata:(nullable NSDictionary *)trailingMetadata
error:(nullable NSError *)error;