Timer in a node of a process

Hi,

I have a problem, if I have a process and I have a timer on a node of an integration, when the timer will start running, when the process starts or when the node runs?


Greetings and thank you!

  Discussion posts and replies are publicly visible

Parents Reply
  • I don't understand what you're asking. As a principle you cannot assume an integration is going to respond either at all or within a reasonable timeframe. So you can put a timer on the node. Typically you'd want to wait (for a process that has a real User waiting for it to respond) something like 3-5 seconds (note: the business requirements would usually say what this value should be). You'd never want to express this in milliseconds, which is why I don't understand why you'd want to define a value to this level of precision.If you meant 'seconds then note that an Integration object now has an explicit timeout attribute available:

    ...which you can define in seconds.

Children