aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/filters/client_channel/connectivity_watcher.h
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2017-09-26 19:37:49 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2017-10-30 12:04:53 -0700
commit7269667f9e091445faa62f8ed96885dca4686487 (patch)
treee7153b5ff4f164d170a068984fc56422efdb6158 /src/core/ext/filters/client_channel/connectivity_watcher.h
parent555b84506e22ecd5bc5cea0f2d3dcae3a1d8c108 (diff)
Add client channel connectivity watcher
Diffstat (limited to 'src/core/ext/filters/client_channel/connectivity_watcher.h')
-rw-r--r--src/core/ext/filters/client_channel/connectivity_watcher.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/core/ext/filters/client_channel/connectivity_watcher.h b/src/core/ext/filters/client_channel/connectivity_watcher.h
new file mode 100644
index 0000000000..89586dc736
--- /dev/null
+++ b/src/core/ext/filters/client_channel/connectivity_watcher.h
@@ -0,0 +1,30 @@
+/*
+ *
+ * Copyright 2015 gRPC authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#ifndef GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_CONNECTIVITY_WATCHER_H
+#define GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_CONNECTIVITY_WATCHER_H
+
+#include <grpc/grpc.h>
+#include "src/core/lib/channel/channel_stack.h"
+#include "src/core/lib/iomgr/exec_ctx.h"
+
+void grpc_client_channel_start_watching_connectivity(
+ grpc_exec_ctx* exec_ctx, grpc_channel_element* client_channel_elem,
+ grpc_channel_stack* channel_stack);
+
+#endif /* GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_CONNECTIVITY_WATCHER_H */