-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Improve status messages #5226
Improve status messages #5226
Conversation
One question require answering. I opt for |
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.
Had some questions on whether or not this will impact our Akka.Persistence.Sql plugins
src/contrib/persistence/Akka.Persistence.Sql.Common/Snapshot/SqlSnapshotStore.cs
Show resolved
Hide resolved
@@ -1720,16 +1722,20 @@ namespace Akka.Actor | |||
public abstract class Status | |||
{ | |||
protected Status() { } | |||
public class Failure : Akka.Actor.Status | |||
public sealed class Failure : Akka.Actor.Status |
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.
LGTM
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.
LGTM
Akka.Actor.Failure
andAkka.Actor.Failures
are unused and got obsoleted.Akka.Actor.Status.Success
andAkka.Actor.Status.Failure
got sealed to improve pattern matching perf.Failure got a new Field 'State' that the receiver can send the command or a correlation-id to the sender back.