aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/GRPCClient/GRPCCall.h
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-10-23 13:14:24 -0700
committerGravatar Muxi Yan <mxyan@google.com>2018-10-23 13:14:24 -0700
commit26108e1106cffd1767f0b7fb6ff4b0672ed6a640 (patch)
treefe8ea617db8d5e258c84c58fdff9810c94487f33 /src/objective-c/GRPCClient/GRPCCall.h
parentcc58524994eddfbbc7cd800efe1462a7ec28d4f0 (diff)
clang-format
Diffstat (limited to 'src/objective-c/GRPCClient/GRPCCall.h')
-rw-r--r--src/objective-c/GRPCClient/GRPCCall.h18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/objective-c/GRPCClient/GRPCCall.h b/src/objective-c/GRPCClient/GRPCCall.h
index 85d0a302d1..a1f139fc18 100644
--- a/src/objective-c/GRPCClient/GRPCCall.h
+++ b/src/objective-c/GRPCClient/GRPCCall.h
@@ -156,9 +156,9 @@ extern NSString *const kGRPCTrailersKey;
@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. The task must be scheduled onto the
+ * dispatch queue in property \a dispatchQueue.
+ */
- (void)receivedInitialMetadata:(NSDictionary *_Nullable)initialMetadata;
/**
@@ -309,7 +309,7 @@ NS_ASSUME_NONNULL_END
*
* The property is initialized to an empty NSMutableDictionary.
*/
-@property(null_unspecified, atomic, readonly) NSMutableDictionary * requestHeaders;
+@property(null_unspecified, atomic, readonly) NSMutableDictionary *requestHeaders;
/**
* This dictionary is populated with the HTTP headers received from the server. This happens before
@@ -342,9 +342,9 @@ NS_ASSUME_NONNULL_END
* host parameter should not contain the scheme (http:// or https://), only the name or IP addr
* and the port number, for example @"localhost:5050".
*/
-- (instancetype _Null_unspecified)initWithHost:(NSString * _Null_unspecified)host
- path:(NSString * _Null_unspecified)path
- requestsWriter:(GRXWriter * _Null_unspecified)requestWriter;
+- (instancetype _Null_unspecified)initWithHost:(NSString *_Null_unspecified)host
+ path:(NSString *_Null_unspecified)path
+ requestsWriter:(GRXWriter *_Null_unspecified)requestWriter;
/**
* Finishes the request side of this call, notifies the server that the RPC should be cancelled, and
@@ -355,7 +355,9 @@ NS_ASSUME_NONNULL_END
/**
* The following methods are deprecated.
*/
-+ (void)setCallSafety:(GRPCCallSafety)callSafety host:(NSString * _Null_unspecified)host path:(NSString * _Null_unspecified)path;
++ (void)setCallSafety:(GRPCCallSafety)callSafety
+ host:(NSString *_Null_unspecified)host
+ path:(NSString *_Null_unspecified)path;
@property(null_unspecified, atomic, copy, readwrite) NSString *serverName;
@property NSTimeInterval timeout;
- (void)setResponseDispatchQueue:(dispatch_queue_t _Null_unspecified)queue;