akka.osgi

ActorSystemActivator

abstract class ActorSystemActivator extends BundleActivator

Abstract bundle activator implementation to bootstrap and configure an actor system in an OSGi environment. It also provides a convenience method to register the actor system in the OSGi Service Registry for sharing it with other OSGi bundles.

This convenience activator is mainly useful for setting up a single akka.actor.ActorSystem instance and sharing that with other bundles in the OSGi Framework. If you want to set up multiple systems in the same bundle context, look at the akka.osgi.OsgiActorSystemFactory instead.

Linear Supertypes
BundleActivator, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ActorSystemActivator
  2. BundleActivator
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ActorSystemActivator()

Abstract Value Members

  1. abstract def configure(context: BundleContext, system: ActorSystem): Unit

    Implement this method to add your own actors to the ActorSystem.

    Implement this method to add your own actors to the ActorSystem. If you want to share the actor system with other bundles, call the registerService(BundleContext, ActorSystem) method from within this method.

    context

    the bundle context

    system

    the ActorSystem that was created by the activator

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  11. def getActorSystemName(context: BundleContext): String

    By default, the akka.actor.ActorSystem name will be set to bundle-<bundle id>-ActorSystem.

    By default, the akka.actor.ActorSystem name will be set to bundle-<bundle id>-ActorSystem. Override this method to define another name for your akka.actor.ActorSystem instance.

    context

    the bundle context

    returns

    the actor system name

  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

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

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

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

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

    Definition Classes
    AnyRef
  18. def registerService(context: BundleContext, system: ActorSystem): Unit

    Register the actor system in the OSGi service registry.

    Register the actor system in the OSGi service registry. The activator itself will ensure that this service is unregistered again when the bundle is being stopped.

    Only one ActorSystem can be registered at a time, so any previous registration will be unregistered prior to registering the new.

    context

    the bundle context

    system

    the actor system

  19. def start(context: BundleContext): Unit

    Sets up a new ActorSystem

    Sets up a new ActorSystem

    context

    the BundleContext

    Definition Classes
    ActorSystemActivator → BundleActivator
  20. def stop(context: BundleContext): Unit

    Shuts down the ActorSystem when the bundle is stopped and, if necessary, unregisters a service registration.

    Shuts down the ActorSystem when the bundle is stopped and, if necessary, unregisters a service registration.

    context

    the BundleContext

    Definition Classes
    ActorSystemActivator → BundleActivator
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from BundleActivator

Inherited from AnyRef

Inherited from Any

Ungrouped