Packages

t

akka.kernel

Bootable

trait Bootable extends AnyRef

To use the microkernel at least one 'boot class' needs to be specified. A boot class implements this interface (akka.kernel.Bootable) and must have an empty default constructor.

ActorSystems can be created within the boot class.

An example of a simple boot class:

class BootApp extends Bootable {
  val system = ActorSystem("app")

  def startup = {
    system.actorOf(Props[FirstActor]) ! FirstMessage
  }

  def shutdown = {
    system.terminate()
  }
}

Boot classes are specified as main arguments to the microkernel.

For example, using the akka script an application can be started with the following at the command line:

bin/akka org.app.BootApp
Annotations
@deprecated
Deprecated

(Since version 2.4) Microkernel is deprecated. Use ordinary main class instead

Source
Main.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Bootable
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def shutdown(): Unit

    Callback run on microkernel shutdown.

    Callback run on microkernel shutdown. Shutdown actor systems here.

  2. abstract def startup(): Unit

    Callback run on microkernel startup.

    Callback run on microkernel startup. Create initial actors and messages here.