blob: e993d5063929b1ab1fb6033233d738fcae15bf35 [file] [log] [blame]
Yuchen Zeng72696672017-09-26 19:37:49 -07001/*
2 *
3 * Copyright 2015 gRPC authors.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18
Yuchen Zeng0bad30a2017-10-05 21:47:39 -070019#ifndef GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_BACKUP_POLLER_H
20#define GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_BACKUP_POLLER_H
Yuchen Zeng72696672017-09-26 19:37:49 -070021
22#include <grpc/grpc.h>
23#include "src/core/lib/channel/channel_stack.h"
24#include "src/core/lib/iomgr/exec_ctx.h"
25
Yuchen Zengdd779222017-10-05 23:22:11 -070026/* Start polling \a interested_parties periodically in the timer thread */
Yuchen Zeng0bad30a2017-10-05 21:47:39 -070027void grpc_client_channel_start_backup_polling(
28 grpc_exec_ctx* exec_ctx, grpc_pollset_set* interested_parties);
Yuchen Zeng72696672017-09-26 19:37:49 -070029
Yuchen Zengdd779222017-10-05 23:22:11 -070030/* Stop polling \a interested_parties */
Yuchen Zeng0bad30a2017-10-05 21:47:39 -070031void grpc_client_channel_stop_backup_polling(
32 grpc_exec_ctx* exec_ctx, grpc_pollset_set* interested_parties);
33
34#endif /* GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_BACKUP_POLLER_H */