MCPcopy Create free account
hub / github.com/apache/arrow / gaflight_ticket_equal

Function gaflight_ticket_equal

c_glib/arrow-flight-glib/common.cpp:678–684  ·  view source on GitHub ↗

* gaflight_ticket_equal: * @ticket: A #GAFlightTicket. * @other_ticket: A #GAFlightTicket to be compared. * * Returns: %TRUE if both of them represents the same ticket, %FALSE otherwise. * * Since: 5.0.0 */

Source from the content-addressed store, hash-verified

676 * Since: 5.0.0
677 */
678gboolean
679gaflight_ticket_equal(GAFlightTicket *ticket, GAFlightTicket *other_ticket)
680{
681 const auto flight_ticket = gaflight_ticket_get_raw(ticket);
682 const auto flight_other_ticket = gaflight_ticket_get_raw(other_ticket);
683 return flight_ticket->Equals(*flight_other_ticket);
684}
685
686typedef struct GAFlightEndpointPrivate_
687{

Callers

nothing calls this directly

Calls 2

gaflight_ticket_get_rawFunction · 0.85
EqualsMethod · 0.45

Tested by

no test coverage detected