blob: 04fc1e45f168f7722234f76793da5a650aff0cf1 [file] [log] [blame]
Jorge Canizales2779ccb2015-04-20 23:42:46 -07001/*
2 *
3 * Copyright 2015, Google Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
34#import <Foundation/Foundation.h>
Jorge Canizales3936ed72015-06-21 14:43:56 -070035#import <GRPCClient/GRPCCall.h>
Jorge Canizales2779ccb2015-04-20 23:42:46 -070036
Jorge Canizalesbe808e32015-07-04 14:37:58 -070037#import "ProtoMethod.h"
38
Makarand Dharmapurikar4f11ab12016-06-08 10:40:00 -070039__attribute__((deprecated("Please use GRPCProtoCall.")))
Jorge Canizales2779ccb2015-04-20 23:42:46 -070040@interface ProtoRPC : GRPCCall
41
Makarand Dharmapurikar150e5022016-06-07 15:00:20 -070042/**
Makarand Dharmapurikarb43bda42016-06-07 13:40:36 -070043 * host parameter should not contain the scheme (http:// or https://), only the name or IP addr
44 * and the port number, for example @"localhost:5050".
45 */
Jorge Canizales2779ccb2015-04-20 23:42:46 -070046- (instancetype)initWithHost:(NSString *)host
Makarand Dharmapurikar6f950102016-06-07 16:52:19 -070047 method:(GRPCProtoMethod *)method
Jorge Canizales56047122015-07-17 12:18:08 -070048 requestsWriter:(GRXWriter *)requestsWriter
Jorge Canizales2779ccb2015-04-20 23:42:46 -070049 responseClass:(Class)responseClass
50 responsesWriteable:(id<GRXWriteable>)responsesWriteable NS_DESIGNATED_INITIALIZER;
51
52- (void)start;
53@end
Makarand Dharmapurikar6f950102016-06-07 16:52:19 -070054
55/**
Makarand Dharmapurikar4f11ab12016-06-08 10:40:00 -070056 * This subclass is empty now. Eventually we'll remove ProtoRPC class
Makarand Dharmapurikar6f950102016-06-07 16:52:19 -070057 * to avoid potential naming conflict
58 */
Yuchen Zeng36a58a72016-06-20 14:01:07 -070059#pragma clang diagnostic push
60#pragma clang diagnostic ignored "-Wdeprecated-declarations"
Makarand Dharmapurikar4f11ab12016-06-08 10:40:00 -070061@interface GRPCProtoCall : ProtoRPC
Yuchen Zeng36a58a72016-06-20 14:01:07 -070062#pragma clang diagnostic pop
Makarand Dharmapurikar6f950102016-06-07 16:52:19 -070063
64@end