-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Akka-free event-sourced persistence #269
Conversation
...e/src/main/scala/com/evolution/akkaeffect/eventsopircing/persistence/EventSourcedStore.scala
Outdated
Show resolved
Hide resolved
* @tparam E event | ||
* @return resource of [[EventSourcedStore]] | ||
*/ | ||
def fromAkka[F[_]: Async: ToTry, S, E](snapshotStore: SnapshotStore, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
overall I'm more interested in actual implementation that meant to replace PersistentActor
:)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please take a look on basic part of persistent actor replacement: com.evolutiongaming.akkaeffect.persistence.EventSourcedActorOf
Okay, now I clearly see that my attempt of loading journaller/snapshotter plugins avoiding registration in akka system is a mistake. Instead, I will create an actor capable of interacting with properly registered journaller/snapshotter plugins ... |
1769949
to
e7c54ad
Compare
No description provided.