update comments that mention Akka (#102)
This commit is contained in:
parent
281a086897
commit
dab50b13e1
3 changed files with 7 additions and 7 deletions
|
|
@ -285,7 +285,7 @@ trait ActorRefFactory {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal Akka use only, used in implementation of system.stop(child).
|
* Internal Pekko use only, used in implementation of system.stop(child).
|
||||||
*/
|
*/
|
||||||
private[pekko] final case class StopChild(child: ActorRef)
|
private[pekko] final case class StopChild(child: ActorRef)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ import com.typesafe.config.Config
|
||||||
object ForkJoinExecutorConfigurator {
|
object ForkJoinExecutorConfigurator {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* INTERNAL AKKA USAGE ONLY
|
* INTERNAL PEKKO USAGE ONLY
|
||||||
*/
|
*/
|
||||||
final class PekkoForkJoinPool(
|
final class PekkoForkJoinPool(
|
||||||
parallelism: Int,
|
parallelism: Int,
|
||||||
|
|
@ -46,7 +46,7 @@ object ForkJoinExecutorConfigurator {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* INTERNAL AKKA USAGE ONLY
|
* INTERNAL PEKKO USAGE ONLY
|
||||||
*/
|
*/
|
||||||
@SerialVersionUID(1L)
|
@SerialVersionUID(1L)
|
||||||
final class PekkoForkJoinTask(runnable: Runnable) extends ForkJoinTask[Unit] {
|
final class PekkoForkJoinTask(runnable: Runnable) extends ForkJoinTask[Unit] {
|
||||||
|
|
|
||||||
|
|
@ -105,7 +105,7 @@ trait LoggingBus extends ActorEventBus {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal Akka use only
|
* Internal Pekko use only
|
||||||
*/
|
*/
|
||||||
private[pekko] def startStdoutLogger(config: Settings): Unit = {
|
private[pekko] def startStdoutLogger(config: Settings): Unit = {
|
||||||
setUpStdoutLogger(config)
|
setUpStdoutLogger(config)
|
||||||
|
|
@ -113,7 +113,7 @@ trait LoggingBus extends ActorEventBus {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal Akka use only
|
* Internal Pekko use only
|
||||||
*/
|
*/
|
||||||
private[pekko] def startDefaultLoggers(system: ActorSystemImpl): Unit = {
|
private[pekko] def startDefaultLoggers(system: ActorSystemImpl): Unit = {
|
||||||
val logName = simpleName(this) + "(" + system + ")"
|
val logName = simpleName(this) + "(" + system + ")"
|
||||||
|
|
@ -178,7 +178,7 @@ trait LoggingBus extends ActorEventBus {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal Akka use only
|
* Internal Pekko use only
|
||||||
*/
|
*/
|
||||||
private[pekko] def stopDefaultLoggers(system: ActorSystem): Unit = {
|
private[pekko] def stopDefaultLoggers(system: ActorSystem): Unit = {
|
||||||
@nowarn("msg=never used")
|
@nowarn("msg=never used")
|
||||||
|
|
@ -503,7 +503,7 @@ object Logging {
|
||||||
final val DebugLevel = LogLevel(4)
|
final val DebugLevel = LogLevel(4)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* INTERNAL API: Internal Akka use only
|
* INTERNAL API: Internal Pekko use only
|
||||||
*
|
*
|
||||||
* Don't include the OffLevel in the AllLogLevels since we should never subscribe
|
* Don't include the OffLevel in the AllLogLevels since we should never subscribe
|
||||||
* to some kind of OffEvent.
|
* to some kind of OffEvent.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue