Place the `FlightData` in the queue to send
(&mut self, datas: impl IntoIterator<Item = FlightData>)
| 338 | |
| 339 | /// Place the `FlightData` in the queue to send |
| 340 | fn queue_messages(&mut self, datas: impl IntoIterator<Item = FlightData>) { |
| 341 | for data in datas { |
| 342 | self.queue_message(data) |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | /// Encodes schema as a [`FlightData`] in self.queue. |
| 347 | /// Updates `self.schema` and returns the new schema |
no test coverage detected