Packages

c

glngn.server.services

AbstractSetIndex

abstract class AbstractSetIndex[T] extends ServiceEntity

Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. AbstractSetIndex
  2. ServiceEntity
  3. ServiceActor
  4. DirectLogging
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbstractSetIndex()(implicit arg0: Encoder[T], arg1: Decoder[T])

Type Members

  1. abstract class Activity extends AnyRef

    The entity defines the activity of an instance.

    The entity defines the activity of an instance. This activity defines the

    • the initial state
    • effects of statements
    • change of state on storage events
    Attributes
    protected
    Definition Classes
    ServiceEntity
  2. abstract class Command[Response] extends Request[Response] with proto.ProtoDecl.Command with proto.ProtoDecl.Request

    All commands are Requests with Proto: extends Command[R] with Proto.

    All commands are Requests with Proto: extends Command[R] with Proto.

    sealed trait Proto extends Message
    case class ExampleCommand(msg: String) extends Command[ExampleResponse] with Proto
    Definition Classes
    ServiceActor
  3. sealed trait Envelope extends Message

    A Proto event with additional attributes and claims.

    A Proto event with additional attributes and claims. To pattern match on an Envelope use the Event.unapply or Request.unapply extractors.

    val behavior: Behavior[Envelope] = Behaviors.receiveMessagePartial {
      case Event(SomeEvent(eventData)) => ???
      case Request(scope, SomeCommand(eventData)) => ???
    }

    An Envelope can be implicitly constructed from any Proto.

    val delegate: ActorRef[Envelope] = ???
    val anEvent: Proto = SomeEvent(eventData)
    delegate ! anEvent
    Definition Classes
    ServiceActor
  4. abstract class Query[Response] extends Request[Response] with proto.ProtoDecl.Query with proto.ProtoDecl.Request

    All queries are Requests with Proto: extends Query[R] with Proto.

    All queries are Requests with Proto: extends Query[R] with Proto.

    sealed trait Proto extends Message
    case class ExampleQuery(msg: String) extends Query[ExampleResponse] with Proto
    Definition Classes
    ServiceActor
  5. sealed abstract class Request[R] extends AnyRef

    A protocol event can be declared as a Request using Command or Query.

    A protocol event can be declared as a Request using Command or Query. The type parameter is the response that resolves the request.

    sealed trait Proto extends Message
    case class ExampleCommand(msg: String) extends Command[ExampleResponse] with Proto
    case class ExampleQuery(msg: String) extends Query[ExampleResponse] with Proto
    Definition Classes
    ServiceActor
  6. case class Add(value: T) extends Command[State] with Storage with Product with Serializable
  7. final type AnyRequest = Proto with Request[_]

    AnyRequest is a Command or Query with no particular response type.

    AnyRequest is a Command or Query with no particular response type.

    Definition Classes
    ServiceActor
  8. final type Id = String

    Definition Classes
    ServiceEntity
  9. sealed trait Proto extends prelude.Message
  10. case class Remove(value: T) extends Command[State] with Storage with Product with Serializable
  11. case class State(values: Set[T]) extends prelude.Message with Product with Serializable
  12. sealed trait Storage extends Proto

Abstract Value Members

  1. abstract val name: EntityName

    Logical name of the entity.

    Logical name of the entity.

    final object AnEntity {
      val name = "an-entity"
      ???
    }
    Definition Classes
    ServiceEntity

Concrete Value Members

  1. object AutoPassivateTimerId
    Definition Classes
    ServiceEntity
  2. object Envelope

    Definition Classes
    ServiceActor
  3. object Event

    Any statement in the protocol can be considered an Event not associated with any additional scope.

    Any statement in the protocol can be considered an Event not associated with any additional scope.

    - see also ServiceActor.RequestScope and Request.unapply

    Definition Classes
    ServiceActor
  4. object EventSourcedEntity

    Re-export of akka.cluster.sharding.typed.scaladsl.EventSourcedEntity with types constrained to this service actor's protocol.

    Re-export of akka.cluster.sharding.typed.scaladsl.EventSourcedEntity with types constrained to this service actor's protocol.

    Definition Classes
    ServiceActor
  5. object Request

    Definition Classes
    ServiceActor
  6. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. final def ##(): Int
    Definition Classes
    AnyRef → Any
  8. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def activity(injector: prelude.Injector, id: Id): Activity

    An instance of Activity that defines the entity's behavior:

    An instance of Activity that defines the entity's behavior:

    • initial state
    • effect of statements in terms of required storage events and side effects.
    • changes to state implied by a stored event

    #104 consider this API in more depth

    Definition Classes
    AbstractSetIndexServiceEntity
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def behavior(entityDomain: String, injector: prelude.Injector): (prelude.EntityContext) ⇒ prelude.Behavior[Envelope]

    Instantiates the activity as a persistent behavior.

    Instantiates the activity as a persistent behavior. Requests requiring replies will receive the result state in reply.

    Attributes
    protected[glngn]
    Definition Classes
    ServiceEntity
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. lazy val logger: prelude.Logger
    Attributes
    protected
    Definition Classes
    DirectLogging
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. def typeKey(entityDomain: EntityDomain): prelude.EntityTypeKey[Envelope]

    Definition Classes
    ServiceEntity
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  29. object Get extends Query[State] with Proto with Product with Serializable

Inherited from ServiceEntity

Inherited from ServiceActor

Inherited from prelude.DirectLogging

Inherited from AnyRef

Inherited from Any

Domain

Service Logic

Implementation Detail

Ungrouped