Class
ArrowFlightServer
Instance methods
gaflight_server_shutdown
Shuts down the serve. This function can be called from signal handler or another thread.
since: 5.0.0
Signals
Signals inherited from GObject (1)
GObject::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
  );
  gboolean (* do_put) (
    GAFlightServer* server,
    GAFlightServerCallContext* context,
    GAFlightMessageReader* reader,
    GAFlightMetadataWriter* writer,
    GError** error
  );
  
}
        No description available.
      
      
      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.
- do_put: gboolean (* do_put) ( GAFlightServer* server, GAFlightServerCallContext* context, GAFlightMessageReader* reader, GAFlightMetadataWriter* writer, GError** error )
- No description available.