监督一些现有流程

时间:2017-05-21 17:27:58

标签: process elixir supervisor

在灵药中,有没有办法监督现有流程? 像

IEnumerable<MyNewClass> filterResult = itemList
    .Where(s => nameFilterTextBox.Text == "" || s.name == nameFilterTextBox.Text)
    .Where(s => descriptionFilterTextBox.Text == "" || s.description == descriptionFilterTextBox.Text)
    .Where(s => comboBox1.SelectedIndex == -1 || s.color == (MyNewClass.Colors)comboBox1.SelectedIndex).ToList();

1 个答案:

答案 0 :(得分:3)

不,你不能。主管采用流程的规范,而不是流程,因此他们可以反复重复使用规范来重启流程。显然,单独的进程ID不足以在数据丢失时重新启动。

话虽如此 - 你可以monitor一个过程,并在你收到死亡信号时做任何你想做的事。