abstract class Operation extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Operation
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Operation(parentSession: HiveSession, confOverlay: Map[String, String], opType: OperationType, runInBackground: Boolean)
    Attributes
    protected[operation]
  2. new Operation(parentSession: HiveSession, confOverlay: Map[String, String], opType: OperationType)
    Attributes
    protected[operation]
  3. new Operation(parentSession: HiveSession, opType: OperationType)
    Attributes
    protected[operation]

Abstract Value Members

  1. abstract def getNextRowSet(orientation: FetchOrientation, maxRows: Long): TRowSet
  2. abstract def getResultSetSchema(): TTableSchema
  3. abstract def runInternal(): Unit

    Implemented by subclass of Operation class to execute specific behaviors.

    Implemented by subclass of Operation class to execute specific behaviors.

    Attributes
    protected[operation]
    Exceptions thrown

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def afterRun(): Unit

    Invoked after runInternal(), even if an exception is thrown in runInternal().

    Invoked after runInternal(), even if an exception is thrown in runInternal(). Clean up resources, which was set up in beforeRun().

    Attributes
    protected[operation]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. final def assertState(state: OperationState): Unit
    Attributes
    protected[operation]
  7. def beforeRun(): Unit

    Invoked before runInternal().

    Invoked before runInternal(). Set up some preconditions, or configurations.

    Attributes
    protected[operation]
  8. def cancel(): Unit
  9. def cleanupOperationLog(): Unit
    Attributes
    protected[operation]
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  11. def close(): Unit
  12. def createOperationLog(): Unit
    Attributes
    protected[operation]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def getBackgroundHandle(): Future[_ <: AnyRef]
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  17. def getConfOverlay(): Map[String, String]
    Attributes
    protected[operation]
  18. def getConfiguration(): HiveConf
  19. def getHandle(): OperationHandle
  20. def getLastAccessTime(): Long
  21. def getOperationLog(): OperationLog
  22. def getOperationTimeout(): Long
  23. def getParentSession(): HiveSession
  24. def getProtocolVersion(): TProtocolVersion
  25. def getStatus(): OperationStatus
  26. def getType(): OperationType
  27. def hasResultSet(): Boolean
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  29. def isCanceled(): Boolean
  30. def isFailed(): Boolean
  31. def isFinished(): Boolean
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. def isRunning(): Boolean
  34. def isTimedOut(current: Long): Boolean
  35. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  37. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  38. def run(): Unit
  39. def setBackgroundHandle(backgroundHandle: Future[_ <: AnyRef]): Unit
    Attributes
    protected[operation]
  40. def setConfiguration(configuration: HiveConf): Unit
  41. def setHasResultSet(hasResultSet: Boolean): Unit
    Attributes
    protected[operation]
  42. def setOperationException(operationException: HiveSQLException): Unit
    Attributes
    protected[operation]
  43. def setOperationTimeout(operationTimeout: Long): Unit
  44. final def setState(newState: OperationState): OperationState
    Attributes
    protected[operation]
  45. def shouldRunAsync(): Boolean
  46. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  47. def toSQLException(prefix: String, response: CommandProcessorResponse): HiveSQLException
    Attributes
    protected[operation]
  48. def toString(): String
    Definition Classes
    AnyRef → Any
  49. def unregisterOperationLog(): Unit
    Attributes
    protected[operation]
  50. def validateDefaultFetchOrientation(orientation: FetchOrientation): Unit

    Verify if the given fetch orientation is part of the default orientation types.

    Verify if the given fetch orientation is part of the default orientation types.

    Attributes
    protected[operation]
    Exceptions thrown
  51. def validateFetchOrientation(orientation: FetchOrientation, supportedOrientations: EnumSet[FetchOrientation]): Unit

    Verify if the given fetch orientation is part of the supported orientation types.

    Verify if the given fetch orientation is part of the supported orientation types.

    Attributes
    protected[operation]
    Exceptions thrown
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  54. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from AnyRef

Inherited from Any

Ungrouped