Page 2 of 2

Re: Getting Started :: Australian OZ RUBY Dial Plan 2016/2017

Posted: Tue Oct 18, 2016 4:29 pm
by Flip
I'm glad I could help! :)

Does dt= add a delay on that leg, or the subsequent leg? i.e. before initiating that leg (leg before the dt= position) or the following leg (after the dt= position)?

Ta

Re: Getting Started :: Australian OZ RUBY Dial Plan 2016/2017

Posted: Wed Oct 19, 2016 6:21 am
by Aaron
The delay is applied to the call leg that the option is part of.

Code: Select all

sys.Dial("1234@i_get_delayed[dt=10]&456@no_delay")

Re: Getting Started :: Australian OZ RUBY Dial Plan 2016/2017

Posted: Sat Oct 22, 2016 8:11 pm
by Flip
Aaron wrote:The delay is applied to the call leg that the option is part of.

Code: Select all

sys.Dial("1234@i_get_delayed[dt=10] & 456@no_delay")
Okay, now we're talking. I thought it was processed in serial. However, it seems all strings separated by '&' are run in parallel.
Thank Aaron - it's crystal clear.