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

Method save_downlink_frame

chirpstack/src/downlink/data_fns.rs:156–168  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

154 }
155
156 async fn save_downlink_frame(&self) -> Result<()> {
157 trace!("Saving downlink frame");
158
159 downlink_frame::save(&internal::DownlinkFrame {
160 downlink_id: self.downlink_frame.downlink_id,
161 downlink_frame: Some(self.downlink_frame.clone()),
162 ..Default::default()
163 })
164 .await
165 .context("Save downlink frame")?;
166
167 Ok(())
168 }
169
170 async fn send_downlink_frame(&self) -> Result<()> {
171 trace!("Sending downlink frame");

Callers 1

_handleMethod · 0.45

Calls 1

saveFunction · 0.50

Tested by

no test coverage detected