Packages

abstract class DurableQueueServer extends Application

Implements an MQTT-based server for the DurableQueue abstraction. This allows clients to connect and share the same underlying DurableQueue over the network.

Linear Supertypes
Application, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DurableQueueServer
  2. Application
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DurableQueueServer()

Abstract Value Members

  1. abstract def acquireDurableQueue()(implicit system: ActorSystem): DurableQueue
    Definition Classes
    Application
  2. abstract def acquireRawStorage()(implicit system: ActorSystem): RawStorage
    Definition Classes
    Application
  3. abstract def acquireSecretStore()(implicit system: ActorSystem): SecretStore
    Definition Classes
    Application

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. def main(args: Array[String], context: ApplicationContext): Unit

    The main entry point.

    The main entry point. All application's must implement this.

    args

    Command line arguments passed in from the outside

    context

    An application context of Streambed services

    Definition Classes
    DurableQueueServerApplication
    Annotations
    @SuppressWarnings()
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. def trap(signal: Int): Boolean

    A receiver of Unix signals received by the application.

    A receiver of Unix signals received by the application.

    This method can be entirely overridden without having to call any super method.

    By default, SIGTERM and SIGINT are handled. Furthermore, if this method returns false for SIGTERM or SIGINT then their default handling will occur.

    The default behavior of SIGTERM and SIGINT is to invoke System.exit with an appropriate code. This will initiate Akka's CoordinatedShutdown mechanism and shutdown other services including the tracer and metrics. Please refer to the ApplicationContext to understand the scope of services that will be shutdown.

    You should should generally use Akka's shutdown mechanisms to orchestrate any required shutdown behavior i.e. CoordinatedShutdown.

    Note that this thread will NOT be called on the same thread as the main method and that you should take care to synchronize its activities.

    returns

    A boolean indicating if the signal was handled. If it was not handled, default signal handling will take effect.

    Definition Classes
    Application
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from Application

Inherited from AnyRef

Inherited from Any

Ungrouped