Class/Object

io.funcqrs.akka

ConfigurableAggregateManager

Related Docs: object ConfigurableAggregateManager | package akka

Permalink

class ConfigurableAggregateManager[A <: AggregateLike] extends AggregateManager with AggregateIdGenerator

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

Instance Constructors

  1. new ConfigurableAggregateManager(behaviorCons: (A.Id) ⇒ Behavior[A], idStrategy: AggregateIdStrategy[A])

    Permalink

Type Members

  1. type Aggregate = A

    Permalink
    Definition Classes
    ConfigurableAggregateManagerAggregateManager → AggregateAliases
  2. type Command = AggregateLike.Protocol.ProtocolCommand

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

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

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

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

    Permalink
    Definition Classes
    AggregateManager
  7. type Protocol = A.Protocol

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

    Permalink
    Definition Classes
    Actor

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
    AggregateManager
  5. object GetStateTyped

    Permalink
    Definition Classes
    AggregateManager
  6. def aggregateActorProps(id: Id): Props

    Permalink

    Build Props for a new Aggregate Actor with the passed Id

    Build Props for a new Aggregate Actor with the passed Id

    Definition Classes
    AggregateManager
  7. def aggregatePassivationStrategy: AggregatePassivationStrategy

    Permalink
    Definition Classes
    AggregateManager
  8. def aroundPostRestart(reason: Throwable): Unit

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  14. def behavior(id: Id): Behavior[A]

    Permalink
  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
    Definition Classes
    AggregateManager
  18. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AggregateManager
  21. def finalize(): Unit

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

    Permalink
    Attributes
    protected
    Definition Classes
    AggregateManager
  23. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  25. val idStrategy: AggregateIdStrategy[A]

    Permalink
  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.

    aggregateId

    Aggregate id

    command

    DomainCommand that should be passed to aggregate

    Definition Classes
    AggregateManager
  36. def processCommand: Receive

    Permalink

    Processes command.

    Processes command. In most cases it should transform message to appropriate aggregate command (and apply some additional logic if needed) and call AggregateManager.processAggregateCommand

    Definition Classes
    AggregateManager
  37. final def processCreation: Receive

    Permalink
    Definition Classes
    AggregateIdGenerator
  38. def processUpdate: Receive

    Permalink
    Definition Classes
    AggregateManager
  39. def receive: PartialFunction[Any, Unit]

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

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

    Permalink
    Definition Classes
    Actor
  42. def supervisorStrategy: SupervisorStrategy

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

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

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

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

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

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

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

Inherited from AggregateIdGenerator

Inherited from AggregateManager

Inherited from AggregateAliases

Inherited from ProtocolAliases

Inherited from ActorLogging

Inherited from Actor

Inherited from AnyRef

Inherited from Any

Ungrouped