akka.actor.ClassicActorSystemProvider.scala Maven / Gradle / Ivy
/*
* Copyright (C) 2009-2019 Lightbend Inc.
*/
package akka.actor
import akka.annotation.DoNotInherit
import akka.annotation.InternalApi
/**
* Glue API introduced to allow minimal user effort integration between classic and typed for example for streams.
*
* Not for user extension.
*/
@DoNotInherit
trait ClassicActorSystemProvider {
/** INTERNAL API */
@InternalApi
private[akka] def classicSystem: ActorSystem
}
/**
* Glue API introduced to allow minimal user effort integration between classic and typed for example for streams.
*
* Not for user extension.
*/
@DoNotInherit
trait ClassicActorContextProvider {
/** INTERNAL API */
@InternalApi
private[akka] def classicActorContext: ActorContext
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy