Go to the documentation of this file.
19 #import <Foundation/Foundation.h>
28 #pragma clang diagnostic push
29 #pragma clang diagnostic ignored "-Wnullability-completeness"
32 @interface ProtoService : NSObject
34 - (nullable instancetype)initWithHost:(nonnull NSString *)host
35 packageName:(nonnull NSString *)packageName
36 serviceName:(nonnull NSString *)serviceName
38 NS_DESIGNATED_INITIALIZER;
41 message:(nonnull
id)message
44 responseClass:(nonnull Class)responseClass;
49 responseClass:(nonnull Class)responseClass;
55 - (instancetype)initWithHost:(NSString *)host
56 packageName:(NSString *)packageName
57 serviceName:(NSString *)serviceName;
60 requestsWriter:(
GRXWriter *)requestsWriter
61 responseClass:(Class)responseClass
66 #pragma clang diagnostic pop
72 #pragma clang diagnostic push
73 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
75 #pragma clang diagnostic pop
__attribute__(void) start
host parameter should not contain the scheme (http:// or https://), only the name or IP addr and the ...
This subclass is empty now.
Definition: ProtoRPCLegacy.h:56
Immutable user configurable options for a gRPC call.
Definition: GRPCCallOptions.h:32
This subclass is empty now.
Definition: ProtoService.h:74
A client-streaming RPC call with Protobuf.
Definition: ProtoRPC.h:132
A unary-request RPC call with Protobuf.
Definition: ProtoRPC.h:101
Utility to create objects that conform to the GRXWriteable protocol, from blocks that handle each of ...
Definition: GRXWriteable.h:47
An GRXWriter object can produce, on demand, a sequence of values.
Definition: GRXWriter.h:77
Definition: ProtoService.h:53
An object can implement this protocol to receive responses from server from a call.
Definition: ProtoRPC.h:33