Implementors may override to handle additional calls to do_put()
(
&self,
_request: Request<PeekableFlightDataStream>,
message: Any,
)
| 376 | |
| 377 | /// Implementors may override to handle additional calls to do_put() |
| 378 | async fn do_put_fallback( |
| 379 | &self, |
| 380 | _request: Request<PeekableFlightDataStream>, |
| 381 | message: Any, |
| 382 | ) -> Result<Response<<Self as FlightService>::DoPutStream>, Status> { |
| 383 | Err(Status::unimplemented(format!( |
| 384 | "do_put: The defined request is invalid: {}", |
| 385 | message.type_url |
| 386 | ))) |
| 387 | } |
| 388 | |
| 389 | /// Implementors may override to handle do_put errors |
| 390 | async fn do_put_error_callback( |
no outgoing calls
no test coverage detected