package example
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
- class BullShitDatabase extends AnyRef
- case class CheckInItemsToInventory(inventoryItemId: GUID, count: Int, originalVersion: Int) extends Command with Product with Serializable
- case class CreateInventoryItem(inventoryItemId: GUID, name: String) extends Command with Product with Serializable
- case class DeactivateInventoryItem(inventoryItemId: GUID, originalVersion: Int) extends Command with Product with Serializable
- class InventoryCommandHandlers extends CommandHandler
- class InventoryItem extends AggregateRoot
- case class InventoryItemCreated(id: GUID, name: String) extends DomainEvent with Product with Serializable
- case class InventoryItemDeactivated(id: GUID) extends DomainEvent with Product with Serializable
- class InventoryItemDetailView extends Logging with EventStreamReceiver
- case class InventoryItemDetailsDto(id: GUID, name: String, currentCount: Int, version: Int) extends Product with Serializable
- case class InventoryItemListDto(id: GUID, name: String) extends Product with Serializable
- case class InventoryItemRenamed(id: GUID, newName: String) extends DomainEvent with Product with Serializable
- case class InventoryItemState(id: GUID, activated: Boolean) extends AggregateRootState with Product with Serializable
- class InventoryListView extends EventStreamReceiver
- case class ItemsCheckedInToInventory(id: GUID, count: Int) extends DomainEvent with Product with Serializable
- case class ItemsRemovedFromInventory(id: GUID, count: Int) extends DomainEvent with Product with Serializable
- class ReadModelFacade extends AnyRef
- case class RemoveItemsFromInventory(inventoryItemId: GUID, count: Int, originalVersion: Int) extends Command with Product with Serializable
- case class RenameInventoryItem(inventoryItemId: GUID, newName: String, originalVersion: Int) extends Command with Product with Serializable
Value Members
- object InventoryItem