Class

ArrowFlightServer

Description

abstract class ArrowFlight.Server : GObject.Object {
  parent_instance: GObject
}
No description available.

Ancestors

Implements

Instance methods

gaflight_server_do_get
No description available.

Available since: 6.0.0

gaflight_server_get_flight_info
No description available.

Available since: 9.0.0

gaflight_server_get_port
No description available.
gaflight_server_list_flights
No description available.

Available since: 5.0.0

gaflight_server_listen
No description available.

Available since: 5.0.0

gaflight_server_shutdown

Shuts down the serve. This function can be called from signal handler or another thread.

Available since: 5.0.0

gaflight_server_wait
No description available.
Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Signals

Signals inherited from GObject (1)
GObject.Object::notify

The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.

Class structure

struct ArrowFlightServerClass {
  GObjectClass parent_class;
  GList* (* list_flights) (
    GAFlightServer* server,
    GAFlightServerCallContext* context,
    GAFlightCriteria* criteria,
    GError** error
  );
  GAFlightInfo* (* get_flight_info) (
    GAFlightServer* server,
    GAFlightServerCallContext* context,
    GAFlightDescriptor* request,
    GError** error
  );
  GAFlightDataStream* (* do_get) (
    GAFlightServer* server,
    GAFlightServerCallContext* context,
    GAFlightTicket* ticket,
    GError** error
  );
  
}
Class members
parent_class
GObjectClass
  No description available.
list_flights
GList* (* list_flights) (
    GAFlightServer* server,
    GAFlightServerCallContext* context,
    GAFlightCriteria* criteria,
    GError** error
  )
  No description available.
get_flight_info
GAFlightInfo* (* get_flight_info) (
    GAFlightServer* server,
    GAFlightServerCallContext* context,
    GAFlightDescriptor* request,
    GError** error
  )
  No description available.
do_get
GAFlightDataStream* (* do_get) (
    GAFlightServer* server,
    GAFlightServerCallContext* context,
    GAFlightTicket* ticket,
    GError** error
  )
  No description available.

Virtual methods

ArrowFlight.ServerClass.do_get
No description available.

Available since: 6.0.0

ArrowFlight.ServerClass.get_flight_info
No description available.

Available since: 9.0.0

ArrowFlight.ServerClass.list_flights
No description available.

Available since: 5.0.0