blob: 10fb9538bcd5f16f3d4b839980330f2c8a5cec0d [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * 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
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +010034#ifndef GRPCXX_CHANNEL_INTERFACE_H
35#define GRPCXX_CHANNEL_INTERFACE_H
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036
Craig Tillerb11728b2015-04-27 18:27:04 -070037#include <memory>
38
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080039#include <grpc++/status.h>
Craig Tillerbb5227f2015-02-11 13:34:48 -080040#include <grpc++/impl/call.h>
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080041
Craig Tillerc4965752015-02-09 09:51:00 -080042struct grpc_call;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080043
44namespace grpc {
Craig Tiller50950712015-02-09 10:38:38 -080045class Call;
46class CallOpBuffer;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080047class ClientContext;
Craig Tillerc4965752015-02-09 09:51:00 -080048class CompletionQueue;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080049class RpcMethod;
Craig Tillerc4965752015-02-09 09:51:00 -080050class CallInterface;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080051
Craig Tiller3691c332015-04-28 08:01:45 -070052class ChannelInterface : public CallHook,
53 public std::enable_shared_from_this<ChannelInterface> {
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080054 public:
55 virtual ~ChannelInterface() {}
56
Craig Tiller3691c332015-04-28 08:01:45 -070057 virtual void* RegisterMethod(const char* method_name) = 0;
Yang Gao6baa9b62015-03-17 10:49:39 -070058 virtual Call CreateCall(const RpcMethod& method, ClientContext* context,
59 CompletionQueue* cq) = 0;
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080060};
61
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080062} // namespace grpc
63
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +010064#endif // GRPCXX_CHANNEL_INTERFACE_H