Class ClientSqlExecuteBatchRequest
java.lang.Object
org.apache.ignite.client.handler.requests.sql.ClientSqlExecuteBatchRequest
Client SQL execute batch request.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic CompletableFuture<ResponseWriter>process(org.apache.ignite.internal.client.proto.ClientMessageUnpacker in, org.apache.ignite.internal.sql.engine.QueryProcessor sql, ClientResourceRegistry resources, org.gridgain.internal.license.LicenseFeatureChecker licenseFeatureChecker, long requestId, Map<Long, org.apache.ignite.lang.CancelHandle> cancelHandleMap, org.apache.ignite.internal.hlc.HybridTimestampTracker tsTracker, String username, boolean memoryQuotaBlockSizeSupported) Processes the request.
-
Constructor Details
-
ClientSqlExecuteBatchRequest
public ClientSqlExecuteBatchRequest()
-
-
Method Details
-
process
public static CompletableFuture<ResponseWriter> process(org.apache.ignite.internal.client.proto.ClientMessageUnpacker in, org.apache.ignite.internal.sql.engine.QueryProcessor sql, ClientResourceRegistry resources, org.gridgain.internal.license.LicenseFeatureChecker licenseFeatureChecker, long requestId, Map<Long, org.apache.ignite.lang.CancelHandle> cancelHandleMap, org.apache.ignite.internal.hlc.HybridTimestampTracker tsTracker, String username, boolean memoryQuotaBlockSizeSupported) Processes the request.- Parameters:
in- Unpacker.sql- SQL API.resources- Resources.licenseFeatureChecker- License feature checker.requestId- Id of the request.cancelHandleMap- Registry of handlers. Request must register itself in this registry before switching to another thread.username- Authenticated user name.memoryQuotaBlockSizeSupported- Whether memoryQuotaBlockSizeSupported feature is supported by the connection.- Returns:
- Future representing result of operation.
-