Implementors may override to handle additional calls to get_flight_info()
(
&self,
cmd: Command,
_request: Request<FlightDescriptor>,
)
| 228 | |
| 229 | /// Implementors may override to handle additional calls to get_flight_info() |
| 230 | async fn get_flight_info_fallback( |
| 231 | &self, |
| 232 | cmd: Command, |
| 233 | _request: Request<FlightDescriptor>, |
| 234 | ) -> Result<Response<FlightInfo>, Status> { |
| 235 | Err(Status::unimplemented(format!( |
| 236 | "get_flight_info: The defined request is invalid: {}", |
| 237 | cmd.type_url() |
| 238 | ))) |
| 239 | } |
| 240 | |
| 241 | // do_get |
| 242 |
no outgoing calls
no test coverage detected