Package-level declarations

Types

Link copied to clipboard
data class ApplyExecutionFailed(val id: String, val error: ErrorDetails, val executeAt: Long, val recoverable: RecoverableType = RecoverableType.UNKNOWN) : Identifier, IRecoverable, ExecutionFailedErrorInfo
Link copied to clipboard
data class ApplyExecutionSuccess(val id: String, val executeAt: Long) : Identifier, ExecuteAt
Link copied to clipboard
data class ApplyRetrySpec(val id: String, val maxRetries: Int, val minBackoff: Int, val executionTimeout: Int) : Identifier, IRetrySpec
Link copied to clipboard
data class ChangeFunction(val id: String, val functionKind: FunctionKind, val processorName: String, val contextName: String, val name: String) : Identifier, FunctionInfo
Link copied to clipboard
data class CompensationPrepared(val eventId: EventId, val function: FunctionInfoData, val retryState: RetryState) : IRetryState
Link copied to clipboard
@Order(value = -2147483648)
data class CreateExecutionFailed(val eventId: EventId, val function: FunctionInfoData, val error: ErrorDetails, val executeAt: Long, val retrySpec: RetrySpec? = null, val recoverable: RecoverableType = RecoverableType.UNKNOWN) : ExecutionFailedInfo
Link copied to clipboard
data class ErrorDetails(val errorCode: String, val errorMsg: String, val stackTrace: String, val bindingErrors: List<BindingError> = emptyList()) : ErrorInfo
Link copied to clipboard
data class EventId(val id: String, val aggregateId: AggregateId, val version: Int) : Identifier, Version, AggregateIdCapable
Link copied to clipboard
interface ExecuteAt
Link copied to clipboard
data class ExecutionFailedApplied(val error: ErrorDetails, val executeAt: Long, val recoverable: RecoverableType = RecoverableType.UNKNOWN) : IRecoverable, ExecutionFailedErrorInfo
Link copied to clipboard
data class ExecutionFailedCreated(val eventId: EventId, val function: FunctionInfoData, val error: ErrorDetails, val executeAt: Long, val retryState: RetryState, val retrySpec: RetrySpec, val recoverable: RecoverableType = RecoverableType.UNKNOWN) : ExecutionFailedInfo, IRetryState
Link copied to clipboard
Link copied to clipboard
data class ExecutionSuccessApplied(val executeAt: Long) : ExecuteAt
Link copied to clipboard
Link copied to clipboard
data class FunctionChanged(val name: String, val processorName: String, val contextName: String, val functionKind: FunctionKind) : FunctionInfo
Link copied to clipboard
interface IRecoverable
Link copied to clipboard
interface IRetrySpec
Link copied to clipboard
interface IRetryState
Link copied to clipboard
data class MarkRecoverable(val id: String, val recoverable: RecoverableType) : Identifier, IRecoverable
Link copied to clipboard
Link copied to clipboard
data class RecoverableMarked(val recoverable: RecoverableType) : IRecoverable
Link copied to clipboard
data class RetrySpec(val maxRetries: Int, val minBackoff: Int, val executionTimeout: Int) : IRetrySpec, Materialized
Link copied to clipboard
data class RetrySpecApplied(val maxRetries: Int, val minBackoff: Int, val executionTimeout: Int) : IRetrySpec
Link copied to clipboard
data class RetryState(val retries: Int, val retryAt: Long, val timeoutAt: Long, val nextRetryAt: Long)