Skip to content
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

Built-in Deleted and Restored events #152

Open
bounoable opened this issue Sep 22, 2023 · 0 comments
Open

Built-in Deleted and Restored events #152

bounoable opened this issue Sep 22, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@bounoable
Copy link
Contributor

Example:

package auth

type User struct { *aggregate.Base }

func (u *User) Delete() {
  aggregate.Delete(u)

  // will be called under the hood:
  aggregate.Next(u, aggregate.Deleted, aggregate.Deletion{})
}

func (u *User) Restore() {
  aggregate.Restore(u)

  // will be called under the hood:
  aggregate.Next(u, aggregate.Restored, aggregate.Restoration{})
}

A new codec.Option will be added to the aggregate package to register the built-in deletion events:

package example

func example() {
  r := codec.New(aggregate.BuiltinEvents())
}

Maybe add a new helper that automatically registers builtin events:

package example

func example() {
  r := aggregate.NewEventRegistry()
}
@bounoable bounoable added the enhancement New feature or request label Sep 22, 2023
@bounoable bounoable changed the title Built-in Deleted and Revived events Built-in Deleted and Restored events Sep 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant