object Effect
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Effect
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def noReply[Event, State]: Effect[Event, State]
Do not send a reply message to this command
- def none[Event, State]: EffectBuilder[Event, State]
Do not replicate anything
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def passivate[Event, State](): EffectBuilder[Event, State]
Passivate (stop temporarily) this entity to reduce memory consumption
- def replicate[Event, State](event: Event): EffectBuilder[Event, State]
Replicate an event
- def reply[Reply, Event, State](replyTo: ActorRef[Reply])(replyMessage: Reply): Effect[Event, State]
Send a reply message to this command
- def stash[Event, State](): Effect[Event, State]
Stash the this command.
Stash the this command. Can unstash the command later with Effect.unstashAll()
- def stopLocally[Event, State](): Effect[Event, State]
Stop this local entity actor immediately
Stop this local entity actor immediately
Note that this Effect doesn't stop all actors that are one entity replicated in other nodes. To stop all replicated actors, you should use passivate().
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unhandled[Event, State]: EffectBuilder[Event, State]
Do not handle this command, but it is not an error.
- def unstashAll[Event, State](): EffectBuilder[Event, State]
Unstash the commands that were stashed with Effect.stash()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()