MCPcopy Create free account
hub / github.com/NVIDIA/NeMo-Relay / deregister_subscriber

Function deregister_subscriber

crates/python/src/py_api/mod.rs:1251–1253  ·  view source on GitHub ↗
(name: &str)

Source from the content-addressed store, hash-verified

1249/// Returns ``True`` if a subscriber with that name was found and removed.
1250#[pyfunction]
1251fn deregister_subscriber(name: &str) -> PyResult<bool> {
1252 core_subscriber_api::deregister_subscriber(name).map_err(to_py_err)
1253}
1254
1255/// Wait for subscriber callbacks queued before this call to finish.
1256#[pyfunction]

Calls

no outgoing calls