多步工作流
了解如何处理协调多个节点执行的复杂执行流程
自定义事件
vendor/bin/neuron make:event App\\Neuron\\FirstEvent.\vendor\bin\neuron make:event App\Neuron\FirstEventnamespace App\Neuron;
class FirstEvent implements Event
{
public function __construct(protected string $firstMsg){}
}
class SecondEvent implements Event
{
public function __construct(protected string $secondMsg){}
}定义工作流

InitialNode
NodeOne
NodeTwo
监控与调试
最后更新于