p

net.glorat.cqrs

example

package example

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class BullShitDatabase extends AnyRef
  2. case class CheckInItemsToInventory(inventoryItemId: GUID, count: Int, originalVersion: Int) extends Command with Product with Serializable
  3. case class CreateInventoryItem(inventoryItemId: GUID, name: String) extends Command with Product with Serializable
  4. case class DeactivateInventoryItem(inventoryItemId: GUID, originalVersion: Int) extends Command with Product with Serializable
  5. class InventoryCommandHandlers extends CommandHandler
  6. class InventoryItem extends AggregateRoot
  7. case class InventoryItemCreated(id: GUID, name: String) extends DomainEvent with Product with Serializable
  8. case class InventoryItemDeactivated(id: GUID) extends DomainEvent with Product with Serializable
  9. class InventoryItemDetailView extends Logging with EventStreamReceiver
  10. case class InventoryItemDetailsDto(id: GUID, name: String, currentCount: Int, version: Int) extends Product with Serializable
  11. case class InventoryItemListDto(id: GUID, name: String) extends Product with Serializable
  12. case class InventoryItemRenamed(id: GUID, newName: String) extends DomainEvent with Product with Serializable
  13. case class InventoryItemState(id: GUID, activated: Boolean) extends AggregateRootState with Product with Serializable
  14. class InventoryListView extends EventStreamReceiver
  15. case class ItemsCheckedInToInventory(id: GUID, count: Int) extends DomainEvent with Product with Serializable
  16. case class ItemsRemovedFromInventory(id: GUID, count: Int) extends DomainEvent with Product with Serializable
  17. class ReadModelFacade extends AnyRef
  18. case class RemoveItemsFromInventory(inventoryItemId: GUID, count: Int, originalVersion: Int) extends Command with Product with Serializable
  19. case class RenameInventoryItem(inventoryItemId: GUID, newName: String, originalVersion: Int) extends Command with Product with Serializable

Value Members

  1. object InventoryItem

Ungrouped