MCPcopy Create free account
hub / github.com/apache/arrow-rs / queue_message

Method queue_message

arrow-flight/src/encode.rs:332–337  ·  view source on GitHub ↗

Place the `FlightData` in the queue to send

(&mut self, mut data: FlightData)

Source from the content-addressed store, hash-verified

330
331 /// Place the `FlightData` in the queue to send
332 fn queue_message(&mut self, mut data: FlightData) {
333 if let Some(descriptor) = self.descriptor.take() {
334 data.flight_descriptor = Some(descriptor);
335 }
336 self.queue.push_back(data);
337 }
338
339 /// Place the `FlightData` in the queue to send
340 fn queue_messages(&mut self, datas: impl IntoIterator<Item = FlightData>) {

Callers 3

queue_messagesMethod · 0.80
encode_schemaMethod · 0.80
encode_batchMethod · 0.80

Calls 1

takeMethod · 0.45

Tested by

no test coverage detected