object PersistentExecutor extends Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PersistentExecutor
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed trait ExecutionCommand extends AnyRef
- final case class FlowResult(result: DynamicValue, timestamp: Timestamp) extends Product with Serializable
- case class GarbageCollectionCommand(finished: Promise[Nothing, Any]) extends Product with Serializable
- sealed trait Instruction extends AnyRef
- final case class RecordedAccess(previousTimestamp: Timestamp, wasModified: Boolean) extends Product with Serializable
- final case class RuntimeState(result: DurablePromise[Either[ExecutorError, DynamicValue], FlowResult], fiber: Fiber[Nothing, Unit], executionStartedAt: java.time.OffsetDateTime, state: Ref[State[_, _]], messages: Queue[ExecutionCommand], persister: Persister) extends Product with Serializable
- final case class State[E, A](id: ScopedFlowId, lastTimestamp: Timestamp, current: ZFlow[_, _, _], stack: List[Instruction], result: DurablePromise[Either[ExecutorError, DynamicValue], FlowResult], envStack: List[Remote[_]], transactionStack: List[TransactionState], tempVarCounter: Int, promiseIdCounter: Int, forkCounter: Int, transactionCounter: Int, status: FlowStatus, watchedVariables: Set[ScopedRemoteVariableName], watchPosition: Index, startedAt: java.time.OffsetDateTime, suspendedAt: Option[java.time.OffsetDateTime], totalExecutionTime: java.time.Duration, currentExecutionTime: java.time.Duration, journalIndex: Option[Index]) extends Product with Serializable
- sealed trait StateChange extends AnyRef
- case class StepResult(stateChange: StateChange, continue: Boolean) extends Product with Serializable
- final case class TransactionState(id: TransactionId, accessedVariables: Map[RemoteVariableName, RecordedAccess], compensations: List[ZFlow[Any, ActivityError, Unit]], readVariables: Set[ScopedRemoteVariableName], retryCount: Int, body: ZFlow[_, _, _]) extends Product with Serializable
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
- val layer: ZLayer[PersistentState with DurableLog with KeyValueStore with ExecutionEnvironment with OperationExecutor, Nothing, ZFlowExecutor]
- def make(gcPeriod: java.time.Duration = 5.minutes): ZLayer[DurableLog with KeyValueStore with PersistentState with Configuration with OperationExecutor with ExecutorBinaryCodecs, Nothing, ZFlowExecutor]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- object ExecutionCommand
- object FlowResult extends Serializable
- object Instruction
- object RecordedAccess extends Serializable
- object State extends Serializable
- object StateChange
- object TransactionState extends Serializable