blob: 1e47ad34ad8bbea6cc713e5e056983c63850fcd7 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller6169d5f2016-03-31 07:46:18 -07003 * 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
Craig Tiller5aceb272016-03-31 13:50:42 -070034#ifndef GRPC_CORE_EXT_CLIENT_CONFIG_CLIENT_CHANNEL_H
35#define GRPC_CORE_EXT_CLIENT_CONFIG_CLIENT_CHANNEL_H
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036
Craig Tillerd4c98332016-03-31 13:45:47 -070037#include "src/core/ext/client_config/resolver.h"
Craig Tiller4a6dad32016-04-01 13:51:14 -070038#include "src/core/lib/channel/channel_stack.h"
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080039
40/* A client channel is a channel that begins disconnected, and can connect
41 to some endpoint on demand. If that endpoint disconnects, it will be
42 connected to again later.
43
44 Calls on a disconnected client channel are queued until a connection is
45 established. */
46
47extern const grpc_channel_filter grpc_client_channel_filter;
48
49/* post-construction initializer to let the client channel know which
50 transport setup it should cancel upon destruction, or initiate when it needs
51 a connection */
Craig Tillera82950e2015-09-22 12:33:20 -070052void grpc_client_channel_set_resolver(grpc_exec_ctx *exec_ctx,
53 grpc_channel_stack *channel_stack,
54 grpc_resolver *resolver);
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080055
Craig Tillera82950e2015-09-22 12:33:20 -070056grpc_connectivity_state grpc_client_channel_check_connectivity_state(
57 grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, int try_to_connect);
Craig Tiller48cb07c2015-07-15 16:16:15 -070058
Craig Tillera82950e2015-09-22 12:33:20 -070059void grpc_client_channel_watch_connectivity_state(
Craig Tiller906e3bc2015-11-24 07:31:31 -080060 grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, grpc_pollset *pollset,
Craig Tillera82950e2015-09-22 12:33:20 -070061 grpc_connectivity_state *state, grpc_closure *on_complete);
Craig Tiller48cb07c2015-07-15 16:16:15 -070062
Craig Tiller5aceb272016-03-31 13:50:42 -070063#endif /* GRPC_CORE_EXT_CLIENT_CONFIG_CLIENT_CHANNEL_H */