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

Method txack_event

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

Source from the content-addressed store, hash-verified

131 }
132
133 async fn txack_event(
134 &self,
135 _vars: &HashMap<String, String>,
136 pl: &integration::TxAckEvent,
137 ) -> Result<()> {
138 let b = match self.json {
139 true => serde_json::to_vec(&pl)?,
140 false => pl.encode_to_vec(),
141 };
142
143 self.post_event("txack", b).await
144 }
145
146 async fn log_event(
147 &self,

Callers 1

test_httpFunction · 0.45

Calls 1

post_eventMethod · 0.45

Tested by 1

test_httpFunction · 0.36