Packages

c

org.apache.hive.service

BreakableService

class BreakableService extends AbstractService

This is a service that can be configured to break on any of the lifecycle events, so test the failure handling of other parts of the service infrastructure.

It retains a counter to the number of times each entry point is called - these counters are incremented before the exceptions are raised and before the superclass state methods are invoked.

Linear Supertypes
AbstractService, Service, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BreakableService
  2. AbstractService
  3. Service
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BreakableService(failOnInit: Boolean, failOnStart: Boolean, failOnStop: Boolean)
  2. new BreakableService()

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def getCount(state: STATE): Int
  10. def getHiveConf(): HiveConf

    Get the configuration of this service.

    Get the configuration of this service. This is normally not a clone and may be manipulated, though there are no guarantees as to what the consequences of such actions may be

    returns

    the current configuration, unless a specific implementation chooses otherwise.

    Definition Classes
    AbstractServiceService
    Annotations
    @Override()
  11. def getName(): String

    Get the name of this service.

    Get the name of this service.

    returns

    the service name

    Definition Classes
    AbstractServiceService
    Annotations
    @Override()
  12. def getServiceState(): STATE

    Get the current service state

    Get the current service state

    returns

    the state of the service

    Definition Classes
    AbstractServiceService
    Annotations
    @Override()
  13. def getStartTime(): Long

    Get the service start time

    Get the service start time

    returns

    the start time of the service. This will be zero if the service has not yet been started.

    Definition Classes
    AbstractServiceService
    Annotations
    @Override()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def init(conf: HiveConf): Unit

    Initialize the service.

    Initialize the service.

    The transition must be from STATE#NOTINITED to STATE#INITED unless the operation failed and an exception was raised.

    Definition Classes
    BreakableServiceAbstractServiceService
    Annotations
    @Override()
    Exceptions thrown

    IllegalStateException if the current service state does not permit this action

  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def register(l: ServiceStateChangeListener): Unit

    Register an instance of the service state change events.

    Register an instance of the service state change events.

    Definition Classes
    AbstractServiceService
    Annotations
    @Override()
  21. def setFailOnInit(failOnInit: Boolean): Unit
  22. def setFailOnStart(failOnStart: Boolean): Unit
  23. def setFailOnStop(failOnStop: Boolean): Unit
  24. def start(): Unit

    Start the service.

    Start the service.

    The transition should be from STATE#INITED to STATE#STARTED unless the operation failed and an exception was raised.

    Definition Classes
    BreakableServiceAbstractServiceService
    Annotations
    @Override()
    Exceptions thrown

    IllegalStateException if the current service state does not permit this action

  25. def stop(): Unit

    Stop the service.

    Stop the service.

    This operation must be designed to complete regardless of the initial state of the service, including the state of all its internal fields.

    Definition Classes
    BreakableServiceAbstractServiceService
    Annotations
    @Override()
    Exceptions thrown

    IllegalStateException if the current service state does not permit this action

  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. def unregister(l: ServiceStateChangeListener): Unit

    Unregister a previously instance of the service state change events.

    Unregister a previously instance of the service state change events.

    Definition Classes
    AbstractServiceService
    Annotations
    @Override()
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

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

Inherited from AbstractService

Inherited from Service

Inherited from AnyRef

Inherited from Any

Ungrouped