Versions in this module Expand all Collapse all v0 v0.0.2 Dec 16, 2024 v0.0.1 Dec 16, 2024 Changes in this version + type Command interface + Context func() context.Context + Execute func(commandContext Context) (interface{}, error) + IsTransactional func() bool + type Context interface + GetAgenda func() agenda.CinderellaEngineAgenda + GetProcessEngineConfiguration func() ProcessEngineConfiguration + SetAgenda func(agenda agenda.CinderellaEngineAgenda) + SetProcessEngineConfiguration func(processEngineConfiguration ProcessEngineConfiguration) + type Deployer interface + Deploy func(deploymentEntity any, deploymentSettings map[string]interface{}) + GetProcess func(key string) model.Process + type Executor interface + Exe func(conf Command) (interface{}, error) + type ExpressionManager interface + CreateExpression func(expression string) expression.Expression + EvaluationContext func() spel.StandardEvaluationContext + type ICommandContextFactory interface + CreateCommandContext func() Context + type Interceptor interface + Execute func(command Command) (interface{}, error) + SetNext func(next Interceptor) + type ProcessEngineConfiguration interface + GetBpmnDeployer func() Deployer + GetCommandExecutor func() Executor + GetDeploymentSettings func() map[string]interface{} + GetExpressionManager func() ExpressionManager + GetIDGenerator func() idgenerator.IDGenerator