Uses of Interface
com.clickhouse.client.ClickHouseResponse
-
Packages that use ClickHouseResponse Package Description com.clickhouse.client Provides necessary classes to communicate with ClickHouse server.com.clickhouse.client.data Provides necessary classes to handle different format or type of data. -
-
Uses of ClickHouseResponse in com.clickhouse.client
Methods in com.clickhouse.client that return types with arguments of type ClickHouseResponse Modifier and Type Method Description CompletableFuture<ClickHouseResponse>ClickHouseClient. execute(ClickHouseRequest<?> request)Creates an immutable copy of the request if it's not sealed, and sends it to a node hold by the request(e.g.CompletableFuture<ClickHouseResponse>ClickHouseRequest. execute()Executes the request.protected CompletableFuture<ClickHouseResponse>AbstractClient. failedResponse(Throwable ex)CompletableFuture<ClickHouseResponse>ClickHouseRequest.Mutation. send()Sends mutation requets for execution. -
Uses of ClickHouseResponse in com.clickhouse.client.data
Classes in com.clickhouse.client.data that implement ClickHouseResponse Modifier and Type Class Description classClickHouseSimpleResponseA simple response built on top of two lists: columns and records.classClickHouseStreamResponseA stream response from server.Methods in com.clickhouse.client.data that return ClickHouseResponse Modifier and Type Method Description static ClickHouseResponseClickHouseSimpleResponse. of(ClickHouseConfig config, List<ClickHouseColumn> columns, Object[][] values)Creates a response object using columns definition and raw values.static ClickHouseResponseClickHouseSimpleResponse. of(ClickHouseConfig config, List<ClickHouseColumn> columns, Object[][] values, ClickHouseResponseSummary summary)Creates a response object using columns definition and raw values.static ClickHouseResponseClickHouseSimpleResponse. of(ClickHouseResponse response)Creates a response object by copying columns and values from the given one.static ClickHouseResponseClickHouseSimpleResponse. of(ClickHouseResponse response, ClickHouseRecordTransformer func)Creates a response object by copying columns and values from the given one.static ClickHouseResponseClickHouseStreamResponse. of(ClickHouseConfig config, ClickHouseInputStream input)static ClickHouseResponseClickHouseStreamResponse. of(ClickHouseConfig config, ClickHouseInputStream input, List<ClickHouseColumn> columns)static ClickHouseResponseClickHouseStreamResponse. of(ClickHouseConfig config, ClickHouseInputStream input, Map<String,Object> settings)static ClickHouseResponseClickHouseStreamResponse. of(ClickHouseConfig config, ClickHouseInputStream input, Map<String,Object> settings, List<ClickHouseColumn> columns)static ClickHouseResponseClickHouseStreamResponse. of(ClickHouseConfig config, ClickHouseInputStream input, Map<String,Object> settings, List<ClickHouseColumn> columns, ClickHouseResponseSummary summary)Methods in com.clickhouse.client.data with parameters of type ClickHouseResponse Modifier and Type Method Description static ClickHouseResponseClickHouseSimpleResponse. of(ClickHouseResponse response)Creates a response object by copying columns and values from the given one.static ClickHouseResponseClickHouseSimpleResponse. of(ClickHouseResponse response, ClickHouseRecordTransformer func)Creates a response object by copying columns and values from the given one.
-