I'm working with Microsoft Bot Framework v3 in a company that has built a huge library on top of it. Their library is not documented, and it's hard for me to know when in bot.dialog
you pass on to the next function of the waterfall 'automatically' and when you need to call next.
In the MS Bot Framework, things like builder.Prompts.text
will pass the results on to the next function in the waterfall automatically, without having to call next
. For example
Is there something somewhere down in the MS Bot Framework original code that gets called every time the waterfall passes on to the next function? Then perhaps I could put a trace statement on that code and see which functions of their library call that and then trigger the transition automatically, without me having to call next
explicitly.
Thanks for any help -- I'm aware that this function seems quite vague, but it's simply that I'm left on my own to understand their library, without documentation, and I'm unclear how their functions work (in contrast I understand how the original MS Bot Framework functions work, because there is documentation).