-
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
Add support for Akka classic in dumping persistence schema #125
Comments
Current solution for akka-typed:
Is based on code occurences of In case of akka-classic - we cannot do a similar thing - as "State" and "Event" keywords are not used as type parameters. In fact, if there are type parameters - there are two options:
So, from a quick research on the
However, this is not a full list and research is not completed. @PawelLipski - what is your opinion on this? Or maybe you have some better idea? |
Huh okay, before you start further work here (as the effort/benefit ratio might not be the best for this issue)...
By used, you mean that you would detect all the types that extend any of these types and consider them to be persisted types whose schemas needs to be dumped? 🤔 Best if you could provide some small sandbox-like example here of a class and its corresponding dump in the comments |
No, current logic for typed "candidates" (
So - from current source file we collect all usages of types from My idea is to find "candidates" (fqcns) for akka classic - types that can be used to persist Events / States. It would be nice to find a repo that still uses akka classic for persistence to check, which types from classic are in fact used to do this. |
No description provided.
The text was updated successfully, but these errors were encountered: