Trait/Object

io.funcqrs.akka

AggregateManager

Related Docs: object AggregateManager | package akka

Permalink

trait AggregateManager extends Actor with ActorLogging with AggregateAliases with AggregateMessageExtractors

Base aggregate manager. Handles communication between client and aggregate. It is also capable of aggregates creation and removal.

Linear Supertypes
AggregateMessageExtractors, AggregateAliases, ProtocolAliases, ActorLogging, Actor, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AggregateManager
  2. AggregateMessageExtractors
  3. AggregateAliases
  4. ProtocolAliases
  5. ActorLogging
  6. Actor
  7. AnyRef
  8. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. abstract type Aggregate <: AggregateLike

    Permalink
    Definition Classes
    AggregateManager → AggregateAliases
  2. type Command = ProtocolAliases.Protocol.ProtocolCommand

    Permalink
    Definition Classes
    ProtocolAliases
  3. type Event = ProtocolAliases.Protocol.ProtocolEvent

    Permalink
    Definition Classes
    ProtocolAliases
  4. type Events = Seq[Event]

    Permalink
    Definition Classes
    ProtocolAliases
  5. type Id = Aggregate.Id

    Permalink
    Definition Classes
    AggregateAliases
  6. case class PendingCommand(sender: ActorRef, targetProcessorId: AggregateManager.Id, command: AggregateManager.Command) extends Product with Serializable

    Permalink
  7. type Protocol = Aggregate.Protocol

    Permalink
    Definition Classes
    AggregateAliases → ProtocolAliases
  8. type Receive = PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    Actor

Abstract Value Members

  1. abstract def behavior(id: Aggregate.Id): Behavior[Aggregate]

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object BadId

    Permalink
    Definition Classes
    AggregateMessageExtractors
  5. object GoodId

    Permalink
    Definition Classes
    AggregateMessageExtractors
  6. object IdAndCommand

    Permalink
    Definition Classes
    AggregateMessageExtractors
  7. def aggregateActorProps(id: Id): Props

    Permalink

    Build Props for a new Aggregate Actor with the passed Id

  8. def aggregatePassivationStrategy: AggregatePassivationStrategy

    Permalink
  9. def aroundPostRestart(reason: Throwable): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  10. def aroundPostStop(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  11. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  12. def aroundPreStart(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  13. def aroundReceive(receive: akka.actor.Actor.Receive, msg: Any): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  14. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  15. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. implicit val context: ActorContext

    Permalink
    Definition Classes
    Actor
  17. def create(id: Id): ActorRef

    Permalink
    Attributes
    protected
  18. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  20. def exists(id: Id): Unit

    Permalink
  21. def fetchState(id: Id): Unit

    Permalink
  22. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. def findOrCreate(id: Id): ActorRef

    Permalink
    Attributes
    protected
  24. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  25. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  27. def log: LoggingAdapter

    Permalink
    Definition Classes
    ActorLogging
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  31. def postRestart(reason: Throwable): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  32. def postStop(): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  33. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  34. def preStart(): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  35. def processAggregateCommand(aggregateId: Id, command: Command): Unit

    Permalink

    Processes aggregate command.

    Processes aggregate command. Creates an aggregate (if not already created) and handles commands caching while aggregate is being killed.

  36. def processCommand: Receive

    Permalink
  37. def receive: PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    AggregateManager → Actor
  38. implicit final val self: ActorRef

    Permalink
    Definition Classes
    Actor
  39. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  40. def supervisorStrategy: SupervisorStrategy

    Permalink
    Definition Classes
    Actor
  41. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  42. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  43. def unhandled(message: Any): Unit

    Permalink
    Definition Classes
    Actor
  44. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AggregateAliases

Inherited from ProtocolAliases

Inherited from ActorLogging

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped