MCPcopy Create free account
hub / github.com/apache/arrow / do_exchange

Method do_exchange

python/pyarrow/tests/test_flight.py:2393–2399  ·  view source on GitHub ↗
(self, context, descriptor, reader, writer)

Source from the content-addressed store, hash-verified

2391 return flight.GeneratorStream(schema, itertools.repeat(rb))
2392
2393 def do_exchange(self, context, descriptor, reader, writer):
2394 schema = pa.schema([])
2395 rb = pa.RecordBatch.from_arrays([], schema=schema)
2396 writer.begin(schema)
2397 while not context.is_cancelled():
2398 writer.write_batch(rb)
2399 time.sleep(0.5)
2400
2401
2402@pytest.mark.threading

Callers

nothing calls this directly

Calls 4

is_cancelledMethod · 0.80
write_batchMethod · 0.80
schemaMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected