19 #import <Foundation/Foundation.h>
28 #pragma clang diagnostic push
29 #pragma clang diagnostic ignored "-Wnullability-completeness"
31 __attribute__((deprecated(
"Please use GRPCProtoService.")))
@interface ProtoService : NSObject
33 - (nullable instancetype)initWithHost:(nonnull NSString *)host
34 packageName:(nonnull NSString *)packageName
35 serviceName:(nonnull NSString *)serviceName
37 NS_DESIGNATED_INITIALIZER;
40 message:(nonnull
id)message
43 responseClass:(nonnull Class)responseClass;
48 responseClass:(nonnull Class)responseClass;
54 - (instancetype)initWithHost:(NSString *)host
55 packageName:(NSString *)packageName
56 serviceName:(NSString *)serviceName;
59 requestsWriter:(
GRXWriter *)requestsWriter
60 responseClass:(Class)responseClass
65 #pragma clang diagnostic pop
71 #pragma clang diagnostic push
72 #pragma clang diagnostic ignored "-Wdeprecated-declarations"
74 #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 ...
Definition: ProtoService.h:52
Immutable user configurable options for a gRPC call.
Definition: GRPCCallOptions.h:30
This subclass is empty now.
Definition: ProtoRPCLegacy.h:56
This subclass is empty now.
Definition: ProtoService.h:74
A client-streaming RPC call with Protobuf.
Definition: ProtoRPC.h:133
A unary-request RPC call with Protobuf.
Definition: ProtoRPC.h:102
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:78
An object can implement this protocol to receive responses from server from a call.
Definition: ProtoRPC.h:33