Execute code in an anonymous thread.
Source position: classesh.inc line 2346
public class function TThread.CreateAnonymousThread( |
aProc: TProcedure |
aProc: TThreadMethod |
):TThread; |
CreateAnonymousThread will create an instance of a TThread descendant and calls aProc in this procedure. This can be used to quickly execute a method in another thread without having to expliticly declare a thread for such purposes. It returns the created TThread instance, which can be checked for termination etc.
Note that this method differs slightly from Delphi in that FPC does not yet support anonymous methods, so the signature of aProc differs slightly.
|
Check if the current thread has finished executing. |