aleph

lxsameer 2018-02-27T11:27:14.000458Z

So basically in a stream pipeline from the beginning to the end I'll be in the same thread unless i use a feature which move the execution flow to another thread, or i have to manually use onto to move the execution flow

lxsameer 2018-02-27T11:27:16.000267Z

right ?

mccraigmccraig 2018-02-27T11:39:05.000200Z

i'm not sure @lxsameer - most of my processing involves some async i/o and so moves to other threads anyway, so i've never bothered to investigate

lxsameer 2018-02-27T11:39:52.000202Z

how do you force it to move to the blocking thread ? do you use blocking queues ?

mccraigmccraig 2018-02-27T11:45:49.000332Z

uh, some misunderstanding i think - i don't do any blocking - i have async i/o ops which return Deferred values

lxsameer 2018-02-27T11:46:25.000144Z

ow shoot, my bad

lxsameer 2018-02-27T11:46:27.000416Z

thanks man