Support for multithreaded scripting. Threads allow you to call
multiple functions simultaneously, for example, to perform a
complex calculation in the background.
Important: Any calls into Strange Eons APIs from a thread
must be made on the event dispatch thread. This can be
done using invokeLater and invokeAndWait.
Include this library by adding useLibrary("threads") to your script.
See the plug-in authoring kit for examples that use this library.
threads library
Support for multithreaded scripting. Threads allow you to call multiple functions simultaneously, for example, to perform a complex calculation in the background.
Important: Any calls into Strange Eons APIs from a thread must be made on the event dispatch thread. This can be done using invokeLater and invokeAndWait.
Include this library by adding
useLibrary("threads")
to your script. See the plug-in authoring kit for examples that use this library.