(self, location=None, expected_schema=None, **kwargs)
| 214 | """A Flight server that returns the last data uploaded.""" |
| 215 | |
| 216 | def __init__(self, location=None, expected_schema=None, **kwargs): |
| 217 | super().__init__(location, **kwargs) |
| 218 | self.last_message = None |
| 219 | self.expected_schema = expected_schema |
| 220 | |
| 221 | def do_get(self, context, ticket): |
| 222 | return flight.RecordBatchStream(self.last_message) |