replace use of Akka in comments (#516)
* replace use of Akka in comments * fix config name
This commit is contained in:
parent
b1f2f37a8a
commit
8d5c34f48f
3 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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).
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue