[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Execute code in an anonymous thread
Source position: classesh.inc line 1647
public class function TThread.CreateAnonymousThread( |
aProc: TProcedure |
):TThread; |
CreateAnonymousThread will create an instance of a TThread descendent 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. |