I’m building a Microsoft Bot Framework v4 bot for SMS (Twillio channel, Node.js) and I need to control message delays, particularly when I’m sending images–otherwise things have a high probability of arriving to the user out of order.
In v3 bot framework, this could be easily achieved through using, for example, Session.delay(3000);
Is there an equivalent for v4?
2
Answers
OK, here's how I'm handling delays: in this scenario, I'm essentially adding an extra step to the waterfall that simply serves as a delay step after a HeroCard. Feels like there could be a better way?
Then, in the waterfall:
Did u try the following?