Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/src/test/java/jdocs/eventsourced/ShoppingCart.java
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,15 @@ public record AdjustItemQuantity(String itemId, int quantity, ActorRef<Confirmat
/**
* A command to get the current state of the shopping cart.
*
* <p>The reply type is the {@link Summary}
* <p>The reply type is the {@link ShoppingCart.Summary}
*/
public record Get(ActorRef<Summary> replyTo) implements Command {}

/**
* A command to checkout the shopping cart.
*
* <p>The reply type is the {@link Confirmation}, which will be returned when the events have been
* emitted.
* <p>The reply type is the {@link ShoppingCart.Confirmation}, which will be returned when the
* events have been emitted.
*/
public record Checkout(ActorRef<Confirmation> replyTo) implements Command {}

Expand Down