update comments that mention Akka (#102)

This commit is contained in:
PJ Fanning 2023-01-16 11:46:09 +01:00 committed by GitHub
parent 281a086897
commit dab50b13e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View file

@ -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)

View file

@ -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] {

View file

@ -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.