Hi all,
I’m using https://github.com/zorbash/opus/ library
I’m trying to make asynchronous pipeline like this :
use Opus.Pipeline
step(:return_user_response)
tee(MyOtherOpusPipeLine)
which doesn’t work ,
it is work if using link function but it is synchronous
use Opus.Pipeline
step(:return_user_response)
link(MyOtherOpusPipeLine)
does anyone has the solution ?
thx