Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I have a service which runs a loop and keeps setting the value in a session variable. Service is executed on click of button in mashup by a user. I want to stop the previous thread when the user re-clicks the button.
Solved! Go to Solution.
Services can't be stopped.
What is your use case though.
Why do you have a loop that is setting values all the time (how often)
What you could do is add a flag that says, user has clicked button, don't update on this look, reset flag and move on.
When button is clicked it re-enables the flag.
Services can't be stopped.
What is your use case though.
Why do you have a loop that is setting values all the time (how often)
What you could do is add a flag that says, user has clicked button, don't update on this look, reset flag and move on.
When button is clicked it re-enables the flag.