-
Notifications
You must be signed in to change notification settings - Fork 1
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
LRU cache for the entity manager #4
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,18 +7,21 @@ | |
//! entity, in contrast to commands. Event sourced entities may also process commands that do not change application state such | ||
//! as query commands for example. | ||
|
||
use async_trait::async_trait; | ||
|
||
use crate::effect::Effect; | ||
use crate::EntityId; | ||
|
||
/// A context provides information about the environment that hosts a specific entity. | ||
pub struct Context { | ||
pub struct Context<'a> { | ||
/// The entity's unique identifier. | ||
pub entity_id: EntityId, | ||
pub entity_id: &'a EntityId, | ||
} | ||
|
||
/// An entity's behavior is the basic unit of modelling aspects of an Akka-Persistence-based application and | ||
/// encapsulates how commands can be applied to state, including the emission of events. Events can | ||
/// also be applied to state in order to produce more state. | ||
#[async_trait] | ||
pub trait EventSourcedBehavior { | ||
/// The state managed by the entity. | ||
type State: Default; | ||
|
@@ -42,4 +45,10 @@ pub trait EventSourcedBehavior { | |
/// the next state. No side effects are to be performed. Can be used to replay | ||
/// events to attain a new state i.e. the major function of event sourcing. | ||
fn on_event(context: &Context, state: &mut Self::State, event: &Self::Event); | ||
|
||
/// The entity will always receive a "recovery completed" signal, even if there | ||
/// are no events sourced, or if it’s a new entity with a previously unused EntityId. | ||
/// Any required side effects should be performed once recovery has completed by | ||
/// overriding this method. | ||
async fn on_recovery_completed(&self, _context: &Context, _state: &Self::State) {} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
An optimization could be if we could read the record entity_id without deserializing the payload. Then it would be more efficient to scan for a single entity_id.
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.
Ah yeah - that's a good idea. I'll do that as a separate PR.