Packages

t

akka.actor

ExtensionId

trait ExtensionId[T <: Extension] extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExtensionId
  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 createExtension(system: ExtendedActorSystem): T

    Is used by Akka to instantiate the Extension identified by this ExtensionId, internal use only.

Concrete Value Members

  1. def apply(system: ActorSystem): T

    Returns an instance of the extension identified by this ExtensionId instance.

  2. final def equals(other: Any): Boolean
    Definition Classes
    ExtensionId → AnyRef → Any
  3. def get(system: ActorSystem): T

    Returns an instance of the extension identified by this ExtensionId instance.

    Returns an instance of the extension identified by this ExtensionId instance. Java API For extensions written in Scala that are to be used from Java also, this method should be overridden to get correct return type.

    override def get(system: ActorSystem): TheExtension = super.get(system)
  4. final def hashCode(): Int
    Definition Classes
    ExtensionId → AnyRef → Any