Uses of Interface
org.apache.arrow.flight.CallOption
Package
Description
-
Uses of CallOption in org.apache.arrow.driver.jdbc.client
Modifier and TypeMethodDescriptionArrowFlightSqlClientHandler.Builder.withCallOptions
(CallOption... options) Adds the providedCallOption
s to this handler.Modifier and TypeMethodDescriptionArrowFlightSqlClientHandler.Builder.withCallOptions
(Collection<CallOption> options) Adds the providedCallOption
s to this handler. -
Uses of CallOption in org.apache.arrow.driver.jdbc.client.utils
Modifier and TypeMethodDescriptionstatic CredentialCallOption
ClientAuthenticationUtils.getAuthenticate
(FlightClient client, String username, String password, ClientIncomingAuthHeaderMiddleware.Factory factory, CallOption... options) Gets theCredentialCallOption
for the provided authentication info.static CredentialCallOption
ClientAuthenticationUtils.getAuthenticate
(FlightClient client, CredentialCallOption credential, CallOption... options) Gets theCredentialCallOption
for the provided authentication info. -
Uses of CallOption in org.apache.arrow.driver.jdbc.utils
Modifier and TypeMethodDescriptionArrowFlightConnectionConfigImpl.toCallOption()
Gets theCallOption
s from thisConnectionConfig
. -
Uses of CallOption in org.apache.arrow.flight
Modifier and TypeInterfaceDescriptionstatic interface
CallOptions specific to GRPC stubs.Modifier and TypeClassDescriptionclass
Method option for supplying headers to method calls.Modifier and TypeMethodDescriptionvoid
FlightClient.authenticate
(ClientAuthHandler handler, CallOption... options) Authenticates against the Flight service.FlightClient.cancelFlightInfo
(CancelFlightInfoRequest request, CallOption... options) Cancel execution of a distributed query.FlightClient.closeSession
(CloseSessionRequest request, CallOption... options) Close/invalidate the current server session.FlightClient.doAction
(Action action, CallOption... options) Performs an action on the Flight service.FlightClient.doExchange
(FlightDescriptor descriptor, CallOption... options) Initiate a bidirectional data exchange with the server.FlightClient.getInfo
(FlightDescriptor descriptor, CallOption... options) Get info on a stream.FlightClient.getSchema
(FlightDescriptor descriptor, CallOption... options) Get schema for a stream.FlightClient.getSessionOptions
(GetSessionOptionsRequest request, CallOption... options) Get the current server session options.FlightClient.getStream
(Ticket ticket, CallOption... options) Retrieve a stream from the server.void
FlightClient.handshake
(CallOption... options) Executes the handshake against the Flight service.FlightClient.listActions
(CallOption... options) Lists actions available on the Flight service.FlightClient.listFlights
(Criteria criteria, CallOption... options) Get a list of available flights.FlightClient.pollInfo
(FlightDescriptor descriptor, CallOption... options) Start or get info on execution of a long-running query.FlightClient.renewFlightEndpoint
(RenewFlightEndpointRequest request, CallOption... options) Request the server to extend the lifetime of a query result set.FlightClient.setSessionOptions
(SetSessionOptionsRequest request, CallOption... options) Set server session option(s) by name/value.FlightClient.startPut
(FlightDescriptor descriptor, FlightClient.PutListener metadataListener, CallOption... options) Create or append a descriptor with another stream.FlightClient.startPut
(FlightDescriptor descriptor, VectorSchemaRoot root, FlightClient.PutListener metadataListener, CallOption... options) Create or append a descriptor with another stream.FlightClient.startPut
(FlightDescriptor descriptor, VectorSchemaRoot root, DictionaryProvider provider, FlightClient.PutListener metadataListener, CallOption... options) Create or append a descriptor with another stream. -
Uses of CallOption in org.apache.arrow.flight.grpc
Modifier and TypeClassDescriptionclass
Method option for supplying credentials to method calls. -
Uses of CallOption in org.apache.arrow.flight.sql
Modifier and TypeMethodDescriptionFlightSqlClient.beginSavepoint
(FlightSqlClient.Transaction transaction, String name, CallOption... options) Create a savepoint within a transaction.FlightSqlClient.beginTransaction
(CallOption... options) Begin a transaction.FlightSqlClient.cancelFlightInfo
(CancelFlightInfoRequest request, CallOption... options) Cancel execution of a distributed query.FlightSqlClient.cancelQuery
(FlightInfo info, CallOption... options) Deprecated.void
FlightSqlClient.PreparedStatement.close
(CallOption... options) Closes the client.FlightSqlClient.closeSession
(CloseSessionRequest request, CallOption... options) void
FlightSqlClient.commit
(FlightSqlClient.Transaction transaction, CallOption... options) Commit a transaction.FlightSqlClient.execute
(String query, CallOption... options) Execute a query on the server.FlightSqlClient.execute
(String query, FlightSqlClient.Transaction transaction, CallOption... options) Execute a query on the server.FlightSqlClient.PreparedStatement.execute
(CallOption... options) Executes the prepared statement query on the server.FlightSqlClient.executeSubstrait
(FlightSqlClient.SubstraitPlan plan, CallOption... options) Execute a Substrait plan on the server.FlightSqlClient.executeSubstrait
(FlightSqlClient.SubstraitPlan plan, FlightSqlClient.Transaction transaction, CallOption... options) Execute a Substrait plan on the server.long
FlightSqlClient.executeSubstraitUpdate
(FlightSqlClient.SubstraitPlan plan, CallOption... options) Execute an update query on the server.long
FlightSqlClient.executeSubstraitUpdate
(FlightSqlClient.SubstraitPlan plan, FlightSqlClient.Transaction transaction, CallOption... options) Execute an update query on the server.long
FlightSqlClient.executeUpdate
(String query, CallOption... options) Execute an update query on the server.long
FlightSqlClient.executeUpdate
(String query, FlightSqlClient.Transaction transaction, CallOption... options) Execute an update query on the server.long
FlightSqlClient.PreparedStatement.executeUpdate
(CallOption... options) Executes the prepared statement update on the server.FlightSqlClient.PreparedStatement.fetchSchema
(CallOption... options) Get the schema of the result set (should be identical toFlightSqlClient.PreparedStatement.getResultSetSchema()
).FlightSqlClient.getCatalogs
(CallOption... options) Request a list of catalogs.FlightSqlClient.getCatalogsSchema
(CallOption... options) Get the schema ofFlightSqlClient.getCatalogs(CallOption...)
from the server.FlightSqlClient.getCrossReference
(TableRef pkTableRef, TableRef fkTableRef, CallOption... options) Retrieves a description of the foreign key columns that reference the given table's primary key columns (the foreign keys exported by a table).FlightSqlClient.getCrossReferenceSchema
(CallOption... options) Get the schema ofFlightSqlClient.getCrossReference(TableRef, TableRef, CallOption...)
from the server.FlightSqlClient.getExecuteSchema
(String query, CallOption... options) Get the schema of the result set of a query.FlightSqlClient.getExecuteSchema
(String query, FlightSqlClient.Transaction transaction, CallOption... options) Get the schema of the result set of a query.FlightSqlClient.getExecuteSubstraitSchema
(FlightSqlClient.SubstraitPlan substraitPlan, CallOption... options) Get the schema of the result set of a Substrait plan.FlightSqlClient.getExecuteSubstraitSchema
(FlightSqlClient.SubstraitPlan plan, FlightSqlClient.Transaction transaction, CallOption... options) Get the schema of the result set of a Substrait plan.FlightSqlClient.getExportedKeys
(TableRef tableRef, CallOption... options) Retrieves a description about the foreign key columns that reference the primary key columns of the given table.FlightSqlClient.getExportedKeysSchema
(CallOption... options) Get the schema ofFlightSqlClient.getExportedKeys(TableRef, CallOption...)
from the server.FlightSqlClient.getImportedKeys
(TableRef tableRef, CallOption... options) Retrieves the foreign key columns for the given table.FlightSqlClient.getImportedKeysSchema
(CallOption... options) Get the schema ofFlightSqlClient.getImportedKeys(TableRef, CallOption...)
from the server.FlightSqlClient.getPrimaryKeys
(TableRef tableRef, CallOption... options) Request the primary keys for a table.FlightSqlClient.getPrimaryKeysSchema
(CallOption... options) Get the schema ofFlightSqlClient.getPrimaryKeys(TableRef, CallOption...)
from the server.FlightSqlClient.getSchema
(FlightDescriptor descriptor, CallOption... options) Get schema for a stream.FlightSqlClient.getSchemas
(String catalog, String dbSchemaFilterPattern, CallOption... options) Request a list of schemas.FlightSqlClient.getSchemasSchema
(CallOption... options) Get the schema ofFlightSqlClient.getSchemas(String, String, CallOption...)
from the server.FlightSqlClient.getSessionOptions
(GetSessionOptionsRequest request, CallOption... options) FlightSqlClient.getSqlInfo
(int[] info, CallOption... options) Request a set of Flight SQL metadata.FlightSqlClient.getSqlInfo
(Iterable<Integer> info, CallOption... options) Request a set of Flight SQL metadata.FlightSqlClient.getSqlInfo
(FlightSql.SqlInfo[] info, CallOption... options) Request a set of Flight SQL metadata.FlightSqlClient.getSqlInfoSchema
(CallOption... options) Get the schema ofFlightSqlClient.getSqlInfo(SqlInfo...)
from the server.FlightSqlClient.getStream
(Ticket ticket, CallOption... options) Retrieve a stream from the server.FlightSqlClient.getTables
(String catalog, String dbSchemaFilterPattern, String tableFilterPattern, List<String> tableTypes, boolean includeSchema, CallOption... options) Request a list of tables.FlightSqlClient.getTablesSchema
(boolean includeSchema, CallOption... options) Get the schema ofFlightSqlClient.getTables(String, String, String, List, boolean, CallOption...)
from the server.FlightSqlClient.getTableTypes
(CallOption... options) Request a list of table types.FlightSqlClient.getTableTypesSchema
(CallOption... options) Get the schema ofFlightSqlClient.getTableTypes(CallOption...)
from the server.FlightSqlClient.getXdbcTypeInfo
(int dataType, CallOption... options) Request the information about the data types supported related to a filter data type.FlightSqlClient.getXdbcTypeInfo
(CallOption... options) Request the information about all the data types supported.FlightSqlClient.getXdbcTypeInfoSchema
(CallOption... options) Get the schema ofFlightSqlClient.getXdbcTypeInfo(CallOption...)
from the server.FlightSqlClient.prepare
(String query, CallOption... options) Create a prepared statement for a SQL query on the server.FlightSqlClient.prepare
(String query, FlightSqlClient.Transaction transaction, CallOption... options) Create a prepared statement for a SQL query on the server.FlightSqlClient.prepare
(FlightSqlClient.SubstraitPlan plan, CallOption... options) Create a prepared statement for a Substrait plan on the server.FlightSqlClient.prepare
(FlightSqlClient.SubstraitPlan plan, FlightSqlClient.Transaction transaction, CallOption... options) Create a prepared statement for a Substrait plan on the server.void
FlightSqlClient.release
(FlightSqlClient.Savepoint savepoint, CallOption... options) Release a savepoint.FlightSqlClient.renewFlightEndpoint
(RenewFlightEndpointRequest request, CallOption... options) Request the server to extend the lifetime of a query result set.void
FlightSqlClient.rollback
(FlightSqlClient.Savepoint savepoint, CallOption... options) Rollback to a savepoint.void
FlightSqlClient.rollback
(FlightSqlClient.Transaction transaction, CallOption... options) Rollback a transaction.FlightSqlClient.setSessionOptions
(SetSessionOptionsRequest request, CallOption... options) -
Uses of CallOption in org.apache.arrow.flight.sql.example
Modifier and TypeMethodDescriptionFlightSqlClientDemoApp.getCallOptions()
Gets the currentCallOption
as an array; usually used as an argument inFlightSqlClient
methods.
FlightSqlClient.cancelFlightInfo(org.apache.arrow.flight.CancelFlightInfoRequest, org.apache.arrow.flight.CallOption...)
.