replace use of Akka in comments (#516)

* replace use of Akka in comments

* fix config name
This commit is contained in:
PJ Fanning 2023-07-31 11:06:17 +01:00 committed by GitHub
parent b1f2f37a8a
commit 8d5c34f48f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -85,7 +85,7 @@ object CapturedLogEvent {
}
/**
* Auxiliary constructor that receives Akka's internal [[OptionVal]] as parameters and converts them to Scala's [[Option]].
* Auxiliary constructor that receives Pekko's internal [[OptionVal]] as parameters and converts them to Scala's [[Option]].
* INTERNAL API
*/
@InternalApi

View file

@ -29,7 +29,7 @@ import pekko.util.ccompat._
import pekko.util.ccompat.JavaConverters._
/**
* Serializes Akka's internal DaemonMsgCreate using protobuf
* Serializes Pekko's internal DaemonMsgCreate using protobuf
* for the core structure of DaemonMsgCreate, Props and Deploy.
* Serialization of contained RouterConfig, Config, and Scope
* is done with configured serializer for those classes.

View file

@ -31,7 +31,7 @@ object ProtobufSerializer {
private val ARRAY_OF_BYTE_ARRAY = Array[Class[_]](classOf[Array[Byte]])
/**
* Helper to serialize an [[pekko.actor.ActorRef]] to Akka's
* Helper to serialize an [[pekko.actor.ActorRef]] to Pekko's
* protobuf representation.
*/
def serializeActorRef(ref: ActorRef): ActorRefData = {
@ -40,7 +40,7 @@ object ProtobufSerializer {
/**
* Helper to materialize (lookup) an [[pekko.actor.ActorRef]]
* from Akka's protobuf representation in the supplied
* from Pekko's protobuf representation in the supplied
* [[pekko.actor.ActorSystem]].
*/
def deserializeActorRef(system: ExtendedActorSystem, refProtocol: ActorRefData): ActorRef =
@ -140,7 +140,7 @@ class ProtobufSerializer(val system: ExtendedActorSystem) extends BaseSerializer
*
* If an old class is removed from `serialization-bindings` when it's not used for serialization
* but still used for deserialization (e.g. rolling update with serialization changes) it can
* be allowed by specifying in `pekko.protobuf.allowed-classes`.
* be allowed by specifying in `pekko.serialization.protobuf.allowed-classes`.
*
* That is also possible when changing a binding from a ProtobufSerializer to another serializer (e.g. Jackson)
* and still bind with the same class (interface).