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

Method save_downlink_frame

chirpstack/src/downlink/roaming.rs:226–238  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

224 }
225
226 async fn save_downlink_frame(&self) -> Result<()> {
227 trace!("Saving downlink frame");
228
229 downlink_frame::save(&internal::DownlinkFrame {
230 downlink_id: self.downlink_frame.downlink_id,
231 downlink_frame: Some(self.downlink_frame.clone()),
232 ..Default::default()
233 })
234 .await
235 .context("Save downlink frame")?;
236
237 Ok(())
238 }
239
240 async fn send_downlink_frame(&self) -> Result<()> {
241 trace!("Sending downlink frame");

Callers 1

_handleMethod · 0.45

Calls 1

saveFunction · 0.50

Tested by

no test coverage detected