Quote:
Originally Posted by joelg236
No. Autonomous (at least in Java) will run until it is finished. There is no way a method's execution can be "stopped".
|
Well, if you really wanted to design it this way, then you could have things running in threads, then interrupt them, or set a boolean and have them return. That was part of my team's architecture last year.