update more akka refs to use pekko name (#200)

This commit is contained in:
PJ Fanning 2023-02-17 10:49:40 +01:00 committed by GitHub
parent 79b0189d70
commit c32fcf1f0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
69 changed files with 139 additions and 137 deletions

View file

@ -19,7 +19,7 @@ import pekko.annotation.DoNotInherit
import pekko.annotation.InternalApi
/**
* Supertype for all Akka Persistence Typed specific signals
* Supertype for all Pekko Persistence Typed specific signals
*
* Not for user extension
*/

View file

@ -142,7 +142,7 @@ object EventSourcedBehavior {
* Allows the event sourced behavior to react on signals.
*
* The regular lifecycle signals can be handled as well as
* Akka Persistence specific signals (snapshot and recovery related). Those are all subtypes of
* Pekko Persistence specific signals (snapshot and recovery related). Those are all subtypes of
* [[pekko.persistence.typed.EventSourcedSignal]]
*/
def receiveSignal(signalHandler: PartialFunction[(State, Signal), Unit]): EventSourcedBehavior[Command, Event, State]