Let's say we have the following, simple, workflow:
And Job A checks for a value, which if false, the whole workflow should be stopped immediately. Is this possible at the moment with Gush?
As an example, let's say we process a new user signup with the above workflow. Job A retrieves the newest user from the database. If the user has been already processed, we'd like to call the workflow complete; the subsequent steps are not necessary anymore, since the user has been already processed.
Let's say we have the following, simple, workflow:
And Job A checks for a value, which if
false, the whole workflow should be stopped immediately. Is this possible at the moment with Gush?As an example, let's say we process a new user signup with the above workflow. Job A retrieves the newest user from the database. If the user has been already processed, we'd like to call the workflow complete; the subsequent steps are not necessary anymore, since the user has been already processed.