2010-02-13 11:58:00 -06:00
|
|
|
/*
|
2010-08-27 03:07:54 -05:00
|
|
|
* This script is executed inside the UI thread, so be sure to call
|
|
|
|
* long running code in another thread.
|
2010-02-13 11:58:00 -06:00
|
|
|
*
|
|
|
|
* You have the following options
|
2010-08-27 03:07:54 -05:00
|
|
|
* - execOutside { // your code }
|
|
|
|
* - execFuture { // your code }
|
2010-02-13 11:58:00 -06:00
|
|
|
* - Thread.start { // your code }
|
|
|
|
*
|
2010-08-27 03:07:54 -05:00
|
|
|
* You have the following options to run code again inside the UI thread
|
|
|
|
* - execAsync { // your code }
|
|
|
|
* - execSync { // your code }
|
2010-03-01 15:58:03 -06:00
|
|
|
*/
|