public static final class FlightSql.ActionCancelQueryRequest.Builder extends com.google.protobuf.GeneratedMessageV3.Builder<FlightSql.ActionCancelQueryRequest.Builder> implements FlightSql.ActionCancelQueryRequestOrBuilder
Request message for the "CancelQuery" action. Explicitly cancel a running query. This lets a single client explicitly cancel work, no matter how many clients are involved/whether the query is distributed or not, given server support. The transaction/statement is not rolled back; it is the application's job to commit or rollback as appropriate. This only indicates the client no longer wishes to read the remainder of the query results or continue submitting data. This command is idempotent. This command is deprecated since 13.0.0. Use the "CancelFlightInfo" action with DoAction instead.Protobuf type
arrow.flight.protocol.sql.ActionCancelQueryRequest
Modifier and Type | Method and Description |
---|---|
FlightSql.ActionCancelQueryRequest |
build() |
FlightSql.ActionCancelQueryRequest |
buildPartial() |
FlightSql.ActionCancelQueryRequest.Builder |
clear() |
FlightSql.ActionCancelQueryRequest.Builder |
clearInfo()
The result of the GetFlightInfo RPC that initiated the query.
|
FlightSql.ActionCancelQueryRequest |
getDefaultInstanceForType() |
static com.google.protobuf.Descriptors.Descriptor |
getDescriptor() |
com.google.protobuf.Descriptors.Descriptor |
getDescriptorForType() |
com.google.protobuf.ByteString |
getInfo()
The result of the GetFlightInfo RPC that initiated the query.
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable |
internalGetFieldAccessorTable() |
boolean |
isInitialized() |
FlightSql.ActionCancelQueryRequest.Builder |
mergeFrom(com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
FlightSql.ActionCancelQueryRequest.Builder |
mergeFrom(FlightSql.ActionCancelQueryRequest other) |
FlightSql.ActionCancelQueryRequest.Builder |
mergeFrom(com.google.protobuf.Message other) |
FlightSql.ActionCancelQueryRequest.Builder |
mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields) |
FlightSql.ActionCancelQueryRequest.Builder |
setInfo(com.google.protobuf.ByteString value)
The result of the GetFlightInfo RPC that initiated the query.
|
FlightSql.ActionCancelQueryRequest.Builder |
setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields) |
addRepeatedField, clearField, clearOneof, clone, getAllFields, getField, getFieldBuilder, getOneofFieldDescriptor, getParentForChildren, getRepeatedField, getRepeatedFieldBuilder, getRepeatedFieldCount, getUnknownFields, getUnknownFieldSetBuilder, hasField, hasOneof, internalGetMapField, internalGetMutableMapField, isClean, markClean, mergeUnknownLengthDelimitedField, mergeUnknownVarintField, newBuilderForField, onBuilt, onChanged, parseUnknownField, setField, setRepeatedField, setUnknownFieldSetBuilder, setUnknownFieldsProto3
findInitializationErrors, getInitializationErrorString, internalMergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, mergeFrom, newUninitializedMessageException, toString
addAll, addAll, mergeDelimitedFrom, mergeDelimitedFrom, mergeFrom, newUninitializedMessageException
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
findInitializationErrors, getAllFields, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
internalGetFieldAccessorTable
in class com.google.protobuf.GeneratedMessageV3.Builder<FlightSql.ActionCancelQueryRequest.Builder>
public FlightSql.ActionCancelQueryRequest.Builder clear()
clear
in interface com.google.protobuf.Message.Builder
clear
in interface com.google.protobuf.MessageLite.Builder
clear
in class com.google.protobuf.GeneratedMessageV3.Builder<FlightSql.ActionCancelQueryRequest.Builder>
public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
getDescriptorForType
in interface com.google.protobuf.Message.Builder
getDescriptorForType
in interface com.google.protobuf.MessageOrBuilder
getDescriptorForType
in class com.google.protobuf.GeneratedMessageV3.Builder<FlightSql.ActionCancelQueryRequest.Builder>
public FlightSql.ActionCancelQueryRequest getDefaultInstanceForType()
getDefaultInstanceForType
in interface com.google.protobuf.MessageLiteOrBuilder
getDefaultInstanceForType
in interface com.google.protobuf.MessageOrBuilder
public FlightSql.ActionCancelQueryRequest build()
build
in interface com.google.protobuf.Message.Builder
build
in interface com.google.protobuf.MessageLite.Builder
public FlightSql.ActionCancelQueryRequest buildPartial()
buildPartial
in interface com.google.protobuf.Message.Builder
buildPartial
in interface com.google.protobuf.MessageLite.Builder
public FlightSql.ActionCancelQueryRequest.Builder mergeFrom(com.google.protobuf.Message other)
mergeFrom
in interface com.google.protobuf.Message.Builder
mergeFrom
in class com.google.protobuf.AbstractMessage.Builder<FlightSql.ActionCancelQueryRequest.Builder>
public FlightSql.ActionCancelQueryRequest.Builder mergeFrom(FlightSql.ActionCancelQueryRequest other)
public final boolean isInitialized()
isInitialized
in interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
in class com.google.protobuf.GeneratedMessageV3.Builder<FlightSql.ActionCancelQueryRequest.Builder>
public FlightSql.ActionCancelQueryRequest.Builder mergeFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
mergeFrom
in interface com.google.protobuf.Message.Builder
mergeFrom
in interface com.google.protobuf.MessageLite.Builder
mergeFrom
in class com.google.protobuf.AbstractMessage.Builder<FlightSql.ActionCancelQueryRequest.Builder>
IOException
public com.google.protobuf.ByteString getInfo()
The result of the GetFlightInfo RPC that initiated the query. XXX(ARROW-16902): this must be a serialized FlightInfo, but is rendered as bytes because Protobuf does not really support one DLL using Protobuf definitions from another DLL.
bytes info = 1;
getInfo
in interface FlightSql.ActionCancelQueryRequestOrBuilder
public FlightSql.ActionCancelQueryRequest.Builder setInfo(com.google.protobuf.ByteString value)
The result of the GetFlightInfo RPC that initiated the query. XXX(ARROW-16902): this must be a serialized FlightInfo, but is rendered as bytes because Protobuf does not really support one DLL using Protobuf definitions from another DLL.
bytes info = 1;
value
- The info to set.public FlightSql.ActionCancelQueryRequest.Builder clearInfo()
The result of the GetFlightInfo RPC that initiated the query. XXX(ARROW-16902): this must be a serialized FlightInfo, but is rendered as bytes because Protobuf does not really support one DLL using Protobuf definitions from another DLL.
bytes info = 1;
public final FlightSql.ActionCancelQueryRequest.Builder setUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
setUnknownFields
in interface com.google.protobuf.Message.Builder
setUnknownFields
in class com.google.protobuf.GeneratedMessageV3.Builder<FlightSql.ActionCancelQueryRequest.Builder>
public final FlightSql.ActionCancelQueryRequest.Builder mergeUnknownFields(com.google.protobuf.UnknownFieldSet unknownFields)
mergeUnknownFields
in interface com.google.protobuf.Message.Builder
mergeUnknownFields
in class com.google.protobuf.GeneratedMessageV3.Builder<FlightSql.ActionCancelQueryRequest.Builder>
Copyright © 2023 The Apache Software Foundation. All rights reserved.