Persistence
Persist the Workflow State across executions.
InMemoryPersistence
use NeuronAI\Workflow\Persistence\InMemoryPersistence;
use NeuronAI\Workflow\Persistence\PersistenceInterface;
class MyWorkflow extends Workflow
{
...
protected function persistence(): PersistenceInterface
{
return new InMemoryPersistence();
}
}FilePersistence
DatabasePersistence
EloquentPersistence
WorkflowInterrupt model
Last updated