* gaflight_command_descriptor_new: * @command: Opaque value used to express a command. * * Returns: The newly created #GAFlightCommandDescriptor. * * Since: 5.0.0 */
| 509 | * Since: 5.0.0 |
| 510 | */ |
| 511 | GAFlightCommandDescriptor * |
| 512 | gaflight_command_descriptor_new(const gchar *command) |
| 513 | { |
| 514 | auto flight_descriptor = arrow::flight::FlightDescriptor::Command(command); |
| 515 | return GAFLIGHT_COMMAND_DESCRIPTOR(gaflight_descriptor_new_raw(&flight_descriptor)); |
| 516 | } |
| 517 | |
| 518 | /** |
| 519 | * gaflight_command_descriptor_get_command: |
nothing calls this directly
no test coverage detected