Async (keyword)
From The Oxygene Language Wiki
This is a Language topic
Feel free to add your notes to this topic below.
The async keyword can be applied to a method to indicate that the method will be executed asynchronously in a worker thread.
method ExecuteIt(Command, Parameters: string); async;
When calling an async method, the call immediately returns.
Async methods may not return a value or expect var or out parameters.
Applies to
See Also
Area: Oxygene Language
Compiler version: Oxygene 5
Language Glossary — Keywords — Types — FAQ — How To