Class

ArrowFlightServerCustomAuthHandler

Description

class ArrowFlight.ServerCustomAuthHandler : ArrowFlight.ServerAuthHandler {
  parent_instance: GAFlightServerAuthHandler
}
No description available.

Instance methods

gaflight_server_custom_auth_handler_authenticate

Authenticates the client on initial connection. The server can send and read responses from the client at any time.

Available since: 12.0.0

gaflight_server_custom_auth_handler_is_valid

Validates a per-call client token.

Available since: 12.0.0

Methods inherited from GObject (43)

Please see GObject for a full list of methods.

Properties

Properties inherited from GAFlightServerAuthHandler (1)
ArrowFlight.ServerAuthHandler:handler
No description available.

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 ArrowFlightServerCustomAuthHandlerClass {
  GAFlightServerAuthHandlerClass parent_class;
  void (* authenticate) (
    GAFlightServerCustomAuthHandler* handler,
    GAFlightServerCallContext* context,
    GAFlightServerAuthSender* sender,
    GAFlightServerAuthReader* reader,
    GError** error
  );
  GBytes* (* is_valid) (
    GAFlightServerCustomAuthHandler* handler,
    GAFlightServerCallContext* context,
    GBytes* token,
    GError** error
  );
  
}
Class members
parent_class
GAFlightServerAuthHandlerClass
  No description available.
authenticate
void (* authenticate) (
    GAFlightServerCustomAuthHandler* handler,
    GAFlightServerCallContext* context,
    GAFlightServerAuthSender* sender,
    GAFlightServerAuthReader* reader,
    GError** error
  )
  No description available.
is_valid
GBytes* (* is_valid) (
    GAFlightServerCustomAuthHandler* handler,
    GAFlightServerCallContext* context,
    GBytes* token,
    GError** error
  )
  No description available.

Virtual methods

ArrowFlight.ServerCustomAuthHandlerClass.authenticate

Authenticates the client on initial connection. The server can send and read responses from the client at any time.

Available since: 12.0.0

ArrowFlight.ServerCustomAuthHandlerClass.is_valid

Validates a per-call client token.

Available since: 12.0.0