Class V11WireOperations
- java.lang.Object
- 
- org.firebirdsql.gds.ng.wire.AbstractWireOperations
- 
- org.firebirdsql.gds.ng.wire.version10.V10WireOperations
- 
- org.firebirdsql.gds.ng.wire.version11.V11WireOperations
 
 
 
- 
- All Implemented Interfaces:
- FbWireOperations
 - Direct Known Subclasses:
- V13WireOperations
 
 public class V11WireOperations extends V10WireOperations - Since:
- 3.0
- Author:
- Mark Rotteveel
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.firebirdsql.gds.ng.wire.FbWireOperationsFbWireOperations.ProcessAttachCallback
 
- 
 - 
Constructor SummaryConstructors Constructor Description V11WireOperations(WireConnection<?,?> connection, WarningMessageCallback defaultWarningMessageCallback)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidenqueueDeferredAction(DeferredAction deferredAction)Enqueue a deferred action.voidprocessDeferredActions()Processes any deferred actions.- 
Methods inherited from class org.firebirdsql.gds.ng.wire.version10.V10WireOperationsauthReceiveResponse
 - 
Methods inherited from class org.firebirdsql.gds.ng.wire.AbstractWireOperationsaddServerKeys, clearServerKeys, consumePackets, getAttachProperties, getClientAuthBlock, getConnection, getDefaultWarningMessageCallback, getEncoding, getPluginSpecificData, getXdrIn, getXdrOut, getXdrStreamAccess, handleCryptKeyCallback, processOperation, processResponse, processResponseWarnings, readBatchCompletionResponse, readGenericResponse, readInlineBlobResponse, readNextOperation, readOperationResponse, readResponse, readSqlResponse, readStatusVector, readStatusVector, setNetworkTimeout, withLock, writeDirect
 
- 
 
- 
- 
- 
Constructor Detail- 
V11WireOperationspublic V11WireOperations(WireConnection<?,?> connection, WarningMessageCallback defaultWarningMessageCallback) 
 
- 
 - 
Method Detail- 
enqueueDeferredActionpublic final void enqueueDeferredAction(DeferredAction deferredAction) Description copied from interface:FbWireOperationsEnqueue a deferred action.FbDatabase implementations that do not support deferred actions are allowed to throw an UnsupportedOperationException(which the default implementation does).- Parameters:
- deferredAction- Deferred action
 
 - 
processDeferredActionspublic final void processDeferredActions() Description copied from interface:FbWireOperationsProcesses any deferred actions. Protocol versions that do not support deferred actions should simply do nothing.WARNING: If the server queues deferred responses, and expects an operation (e.g. op_batch_sync,op_batch_execorop_ping) to actual send those responses, this method may block indefinitely.
 
- 
 
-