MCPcopy Create free account
hub / github.com/chirpstack/chirpstack / join_event

Function join_event

chirpstack/src/integration/mod.rs:230–245  ·  view source on GitHub ↗
(
    application_id: Uuid,
    vars: &HashMap<String, String>,
    pl: &integration::JoinEvent,
)

Source from the content-addressed store, hash-verified

228}
229
230pub async fn join_event(
231 application_id: Uuid,
232 vars: &HashMap<String, String>,
233 pl: &integration::JoinEvent,
234) {
235 tokio::spawn({
236 let vars = vars.clone();
237 let pl = pl.clone();
238
239 async move {
240 if let Err(err) = _join_event(application_id, &vars, &pl).await {
241 warn!(application_id = %application_id, error = %err.full(), "Join event error");
242 }
243 }
244 });
245}
246
247async fn _join_event(
248 application_id: Uuid,

Callers

nothing calls this directly

Calls 1

_join_eventFunction · 0.85

Tested by

no test coverage detected