Class

com.typesafe.conductr.bundlelib.scala

AbstractStatusService

Related Doc: package scala

Permalink

abstract class AbstractStatusService extends AnyRef

StatusService used to communicate the bundle status to the Typesafe ConductR Status Server.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AbstractStatusService
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbstractStatusService(handler: AbstractConnectionHandler)

    Permalink

Type Members

  1. abstract type CC <: AbstractConnectionContext

    Permalink
    Attributes
    protected

Abstract Value Members

  1. abstract def signalStarted()(implicit cc: CC): Future[Option[Unit]]

    Permalink

    Signal that the bundle has started or throw IOException if it fails.

    Signal that the bundle has started or throw IOException if it fails. If the bundle fails to communicate that it has started it will eventually be killed by the ConductR.

    The returned future will complete successfully if the ConductR acknowledges the start signal. A Future of None will be returned if this program is not running in the context of ConductR.

  2. abstract def signalStartedOrExit()(implicit cc: CC): Future[Option[Unit]]

    Permalink

    Signal that the bundle has started or exit the JVM if it fails.

    Signal that the bundle has started or exit the JVM if it fails.

    This will exit the JVM if it fails with exit code 70 (EXIT_SOFTWARE, Internal Software Error, as defined in BSD sysexits.h).

    The returned future will complete successfully if the ConductR acknowledges the start signal. A Future of None will be returned if this program is not running in the context of ConductR.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def createSignalStartedPayload: Option[HttpPayload]

    Permalink

    Create the HttpPayload necessary to signal that a bundle has started.

    Create the HttpPayload necessary to signal that a bundle has started.

    Any 2xx response code is considered a success. Any other response code is considered a failure.

    returns

    Some HttpPayload describing how to signal that a bundle has started or None if this program is not running within ConductR

  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def handleSignal(responseCode: Int, headers: Map[String, Option[String]]): Option[Unit]

    Permalink
    Attributes
    protected
  12. def handleSignalOrExit: PartialFunction[Throwable, Option[Unit]]

    Permalink
    Attributes
    protected
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  16. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped