Class

ArrowFlightSQLServer

Description

abstract class ArrowFlightSQL.Server : ArrowFlight.Server {
  parent_instance: GAFlightServer
}
No description available.

Implements

Instance methods

gaflightsql_server_close_prepared_statement
No description available.

Available since: 14.0.0

gaflightsql_server_create_prepared_statement
No description available.

Available since: 14.0.0

gaflightsql_server_do_get_statement
No description available.

Available since: 9.0.0

gaflightsql_server_do_put_command_statement_update
No description available.

Available since: 13.0.0

gaflightsql_server_do_put_prepared_statement_update
No description available.

Available since: 14.0.0

gaflightsql_server_get_flight_info_statement
No description available.

Available since: 9.0.0

Methods inherited from GAFlightServer (7)
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 ArrowFlightSQLServerClass {
  GAFlightServerClass parent_class;
  GAFlightInfo* (* get_flight_info_statement) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLStatementQuery* command,
    GAFlightDescriptor* descriptor,
    GError** error
  );
  GAFlightDataStream* (* do_get_statement) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLStatementQueryTicket* ticket,
    GError** error
  );
  gint64 (* do_put_command_statement_update) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLStatementUpdate* command,
    GError** error
  );
  gint64 (* do_put_prepared_statement_update) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLPreparedStatementUpdate* command,
    GAFlightMessageReader* reader,
    GError** error
  );
  GAFlightSQLCreatePreparedStatementResult* (* create_prepared_statement) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLCreatePreparedStatementRequest* request,
    GError** error
  );
  void (* close_prepared_statement) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLClosePreparedStatementRequest* request,
    GError** error
  );
  
}
Class members
parent_class
GAFlightServerClass
  No description available.
get_flight_info_statement
GAFlightInfo* (* get_flight_info_statement) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLStatementQuery* command,
    GAFlightDescriptor* descriptor,
    GError** error
  )
  No description available.
do_get_statement
GAFlightDataStream* (* do_get_statement) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLStatementQueryTicket* ticket,
    GError** error
  )
  No description available.
do_put_command_statement_update
gint64 (* do_put_command_statement_update) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLStatementUpdate* command,
    GError** error
  )
  No description available.
do_put_prepared_statement_update
gint64 (* do_put_prepared_statement_update) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLPreparedStatementUpdate* command,
    GAFlightMessageReader* reader,
    GError** error
  )
  No description available.
create_prepared_statement
GAFlightSQLCreatePreparedStatementResult* (* create_prepared_statement) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLCreatePreparedStatementRequest* request,
    GError** error
  )
  No description available.
close_prepared_statement
void (* close_prepared_statement) (
    GAFlightSQLServer* server,
    GAFlightServerCallContext* context,
    GAFlightSQLClosePreparedStatementRequest* request,
    GError** error
  )
  No description available.

Virtual methods

ArrowFlightSQL.ServerClass.close_prepared_statement
No description available.

Available since: 14.0.0

ArrowFlightSQL.ServerClass.create_prepared_statement
No description available.

Available since: 14.0.0

ArrowFlightSQL.ServerClass.do_get_statement
No description available.

Available since: 9.0.0

ArrowFlightSQL.ServerClass.do_put_command_statement_update
No description available.

Available since: 13.0.0

ArrowFlightSQL.ServerClass.do_put_prepared_statement_update
No description available.

Available since: 14.0.0

ArrowFlightSQL.ServerClass.get_flight_info_statement
No description available.

Available since: 9.0.0