Skip to content

Commit

Permalink
add slide with event sourcing drawings
Browse files Browse the repository at this point in the history
  • Loading branch information
wicked539 committed May 29, 2024
1 parent a1d1462 commit 190aaab
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 44 deletions.
Binary file added assets/event-sourcing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 0 additions & 21 deletions assets/event-sourcing.svg

This file was deleted.

Binary file added assets/simple-persistence.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 0 additions & 21 deletions assets/simple-persistence.svg

This file was deleted.

26 changes: 24 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,29 @@ <h3>Overview</h3>
</section>
<section>
<section><h2>Event Sourcing</h2></section>
<section><h3>What is it?</h3>
<div style="display: flex;">
<div class="fragment" style="flex: 1">
<div class="r-stack">
<img src="assets/simple-persistence.png" height="400">
</div>
<p style="white-space:nowrap; width:400px; vertical-align:top;">Object Persistence</p>
</div>
<div class="fragment" style="flex: 2">
<div class="r-stack">
<img src="assets/event-sourcing.png" height="400">
</div>
<p>Event Sourcing</p>
</div>
</div>

<aside class="notes">
<ul>
<li>Instead of state of a business object, we persist the changes manipulating it</li>
</ul>
</aside>
</section>

<section><h3>What is it?</h3>
<p class="fragment">Persistence pattern where the state of an aggregate is maintained as a stream of events</p>

Expand All @@ -271,8 +294,7 @@ <h3>Overview</h3>

<aside class="notes">
<ul>
<li>TODO: add drawings here</li>
<li>Instead of state of a business object, we persist the changes manipulating it</li>
<li>TODO: slide needed?</li>
</ul>
</aside>
</section>
Expand Down

0 comments on commit 190aaab

Please sign in to comment.