pyarrow.flight.Result¶
- class pyarrow.flight.Result(buf)¶
Bases:
_Weakrefable
A result from executing an Action.
- __init__()¶
Create a new result.
- Parameters:
- buf
Buffer
or bytes-like object
- buf
Methods
Create a new result.
deserialize
(type cls, serialized)Parse the wire-format representation of this type.
serialize
(self)Get the wire-format representation of this type.
Attributes
Get the Buffer containing the result.
- body¶
Get the Buffer containing the result.
- deserialize(type cls, serialized)¶
Parse the wire-format representation of this type.
Useful when interoperating with non-Flight systems (e.g. REST services) that may want to return Flight types.
- serialize(self)¶
Get the wire-format representation of this type.
Useful when interoperating with non-Flight systems (e.g. REST services) that may want to return Flight types.