Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. 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.