asyncInitialize

asyncInitialize() updating;

The asyncInitialize method of the Application class constructs the internal structures required to process asynchronous method calls and prepares the application to receive and process requests.

The method is typically called from the initialize method for a worker application that processes asynchronous method calls. The following example shows an initialization method for a worker application coded in the Application subclass of the user schema.

initializeSearchWorker() updating;
begin
    app.asyncInitialize; // Turns application into asynchronous worker app
end;