aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/client_config/subchannel.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-06-23 12:30:00 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-06-23 12:30:00 -0700
commitd58b5b88479cd3b24c171104eb5494e0d0702e42 (patch)
tree18220332801882ee69307cb2fc4477b31708f6a4 /src/core/client_config/subchannel.h
parent9e8f9115c4e416a5ce3735e0b6cc47fce04973ef (diff)
Move parent subchannel construction args...
... into grpc_channel itself, to hide this complicated construction detail.
Diffstat (limited to 'src/core/client_config/subchannel.h')
-rw-r--r--src/core/client_config/subchannel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/client_config/subchannel.h b/src/core/client_config/subchannel.h
index 56109a2570..8befc28d51 100644
--- a/src/core/client_config/subchannel.h
+++ b/src/core/client_config/subchannel.h
@@ -60,11 +60,13 @@ void grpc_subchannel_unref(grpc_subchannel *channel);
/** poll the current connectivity state of a channel */
grpc_connectivity_state grpc_subchannel_check_connectivity(
grpc_subchannel *channel);
+
/** call notify when the connectivity state of a channel changes from *state.
Updates *state with the new state of the channel */
void grpc_subchannel_notify_on_state_change(grpc_subchannel *channel,
grpc_connectivity_state *state,
grpc_iomgr_closure *notify);
+
/** continue processing of transport operation \a op */
void grpc_subchannel_continue_op(grpc_subchannel *channel,
grpc_transport_op *op);