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

Method ack_event

chirpstack/src/integration/http.rs:120–131  ·  view source on GitHub ↗
(
        &self,
        _vars: &HashMap<String, String>,
        pl: &integration::AckEvent,
    )

Source from the content-addressed store, hash-verified

118 }
119
120 async fn ack_event(
121 &self,
122 _vars: &HashMap<String, String>,
123 pl: &integration::AckEvent,
124 ) -> Result<()> {
125 let b = match self.json {
126 true => serde_json::to_vec(&pl)?,
127 false => pl.encode_to_vec(),
128 };
129
130 self.post_event("ack", b).await
131 }
132
133 async fn txack_event(
134 &self,

Callers 1

test_httpFunction · 0.45

Calls 1

post_eventMethod · 0.45

Tested by 1

test_httpFunction · 0.36