diff --git a/src/core/client_config/subchannel.c b/src/core/client_config/subchannel.c
index e77311f4f84523bd6b6225923c0bedf455fabade..a2c521a20d9f9c38ff116557c2a85515e654f16e 100644
--- a/src/core/client_config/subchannel.c
+++ b/src/core/client_config/subchannel.c
@@ -413,6 +413,17 @@ void grpc_subchannel_notify_on_state_change(grpc_exec_ctx *exec_ctx,
   }
 }
 
+int grpc_subchannel_state_change_unsubscribe(grpc_exec_ctx *exec_ctx,
+                                             grpc_subchannel *c,
+                                             grpc_closure *subscribed_notify) {
+  int success;
+  gpr_mu_lock(&c->mu);
+  success = grpc_connectivity_state_change_unsubscribe(
+      exec_ctx, &c->state_tracker, subscribed_notify);
+  gpr_mu_unlock(&c->mu);
+  return success;
+}
+
 void grpc_subchannel_process_transport_op(grpc_exec_ctx *exec_ctx,
                                           grpc_subchannel *c,
                                           grpc_transport_op *op) {
diff --git a/src/core/client_config/subchannel.h b/src/core/client_config/subchannel.h
index 2af3ce9e56ae98764280406e5b5ece8ab6507a17..03e7cd0590d3722a39319bfb1bc030dcb9b263f4 100644
--- a/src/core/client_config/subchannel.h
+++ b/src/core/client_config/subchannel.h
@@ -64,13 +64,13 @@ typedef struct grpc_subchannel_args grpc_subchannel_args;
 #define GRPC_SUBCHANNEL_REF_EXTRA_ARGS
 #endif
 
-void grpc_subchannel_ref(grpc_subchannel *channel
-                             GRPC_SUBCHANNEL_REF_EXTRA_ARGS);
+void grpc_subchannel_ref(
+    grpc_subchannel *channel GRPC_SUBCHANNEL_REF_EXTRA_ARGS);
 void grpc_subchannel_unref(grpc_exec_ctx *exec_ctx,
                            grpc_subchannel *channel
                                GRPC_SUBCHANNEL_REF_EXTRA_ARGS);
-void grpc_subchannel_call_ref(grpc_subchannel_call *call
-                                  GRPC_SUBCHANNEL_REF_EXTRA_ARGS);
+void grpc_subchannel_call_ref(
+    grpc_subchannel_call *call GRPC_SUBCHANNEL_REF_EXTRA_ARGS);
 void grpc_subchannel_call_unref(grpc_exec_ctx *exec_ctx,
                                 grpc_subchannel_call *call
                                     GRPC_SUBCHANNEL_REF_EXTRA_ARGS);
@@ -98,6 +98,13 @@ void grpc_subchannel_notify_on_state_change(grpc_exec_ctx *exec_ctx,
                                             grpc_connectivity_state *state,
                                             grpc_closure *notify);
 
+/** Remove \a subscribed_notify from the list of closures to be called on a
+ * state change if present, returning 1. Otherwise, nothing is done and return
+ * 0. */
+int grpc_subchannel_state_change_unsubscribe(grpc_exec_ctx *exec_ctx,
+                                             grpc_subchannel *channel,
+                                             grpc_closure *subscribed_notify);
+
 /** express interest in \a channel's activities through \a pollset. */
 void grpc_subchannel_add_interested_party(grpc_exec_ctx *exec_ctx,
                                           grpc_subchannel *channel,
diff --git a/src/core/transport/connectivity_state.c b/src/core/transport/connectivity_state.c
index a53fecc19856a956600b2f04627cc269ea666630..09b298c131b6dab8b2f7741712cb3445b20dd32a 100644
--- a/src/core/transport/connectivity_state.c
+++ b/src/core/transport/connectivity_state.c
@@ -115,6 +115,27 @@ int grpc_connectivity_state_notify_on_state_change(
   return tracker->current_state == GRPC_CHANNEL_IDLE;
 }
 
+int grpc_connectivity_state_change_unsubscribe(
+    grpc_exec_ctx *exec_ctx, grpc_connectivity_state_tracker *tracker,
+    grpc_closure *subscribed_notify) {
+  grpc_connectivity_state_watcher *w = tracker->watchers;
+  if (w != NULL && w->notify == subscribed_notify) {
+    tracker->watchers = w->next;
+    gpr_free(w);
+    return 1;
+  }
+  while (w != NULL) {
+    grpc_connectivity_state_watcher *rm_candidate = w->next;
+    if (rm_candidate != NULL && rm_candidate->notify == subscribed_notify) {
+      w->next = w->next->next;
+      gpr_free(rm_candidate);
+      return 1;
+    }
+    w = w->next;
+  }
+  return 0;
+}
+
 void grpc_connectivity_state_set(grpc_exec_ctx *exec_ctx,
                                  grpc_connectivity_state_tracker *tracker,
                                  grpc_connectivity_state state,
diff --git a/src/core/transport/connectivity_state.h b/src/core/transport/connectivity_state.h
index 8b6b0554cd4616dfb2952d7cd6281a67a75669e6..119b1c1554db07a65814e46002ad09e7f3173771 100644
--- a/src/core/transport/connectivity_state.h
+++ b/src/core/transport/connectivity_state.h
@@ -78,4 +78,11 @@ int grpc_connectivity_state_notify_on_state_change(
     grpc_exec_ctx *exec_ctx, grpc_connectivity_state_tracker *tracker,
     grpc_connectivity_state *current, grpc_closure *notify);
 
+/** Remove \a subscribed_notify from the list of closures to be called on a
+ * state change if present, returning 1. Otherwise, nothing is done and return
+ * 0. */
+int grpc_connectivity_state_change_unsubscribe(
+    grpc_exec_ctx *exec_ctx, grpc_connectivity_state_tracker *tracker,
+    grpc_closure *subscribed_notify);
+
 #endif /* GRPC_INTERNAL_CORE_TRANSPORT_CONNECTIVITY_STATE_H */