Skip to content

Instantly share code, notes, and snippets.

@justinhj
Created December 2, 2019 04:40
Show Gist options
  • Save justinhj/56d59804dac0633c64f41ff25664ee0a to your computer and use it in GitHub Desktop.
Save justinhj/56d59804dac0633c64f41ff25664ee0a to your computer and use it in GitHub Desktop.
override def behavior = {
Actions().onCommand[DepositCmd, Int]{
case (DepositCmd(time, description, amount), ctx, state) =>
ctx.thenPersist(DepositEvt(time, description, amount)){ _ =>
ctx.reply(state.balance + amount)
}
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment