QUIT 4D

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 6.8 (Modified)


QUIT 4D {(time)}

ParameterTypeDescription
timeNumberTime (mn) before quitting the server

Description

The QUIT 4D command exits 4th Dimension/4D Client or 4D Server and returns to the Desktop.

The command processing is different whether it is executed on 4th Dimension/4D Client or on 4D Server.

With 4th Dimension and 4D Client:

After you call QUIT 4D, the current process stops its execution, then 4D acts as follows:

If there is an On Exit Database Method, 4D starts executing this method within a newly created local process. For example, you can use this database method to inform other processes, via interprocess communication, that they must close (data entry) or stop the execution of operations started by the On Startup Database Method (connection from 4D to another database server). Note that 4D will eventually quit; the On Exit Database Method can perform all the cleanup or closing operations you wish, but cannot refuse the quit and will at some point end.

If there is no On Exit Database Method, 4D aborts each running process one by one, without distinction.

If the user is performing data entry, the records will be cancelled and not saved.

If you want to let the user save data entry modifications made in the current open windows, you can use interprocess communication to signal all the other user processes that the database is going to be exited. To do so, you can adopt two strategies:

Perform these operations from within the current process before calling QUIT 4D

Handle these operations from within the On Exit Database Method.

A third strategy is also possible. Before calling QUIT 4D, you check whether a window will need validation; if that is the case, you ask the user to validate or cancel these windows and then to choose Quit again. However, from a user interface standpoint, the first two strategies are preferable.

Note: The time parameter cannot be used with 4th Dimension or 4D Client.

With 4D Server (Stored procedure)

The QUIT 4D command can be executed on the server machine, in a stored procedure. In this case, it accepts the time optional parameter.

The time parameter allows setting a timeout to the 4D Server before the application actually quits, allowing client machines the time to disconnect. You must pass a value in minutes in time. This parameter is only taken into consideration during an execution on the server machine. It is ignored in 4D Client or 4th Dimension.

If you do not pass a parameter for time, 4D Server will wait until all client machines are disconnected before quitting.

Unlike 4th Dimension and 4D Client, the processing of QUIT 4D by 4D Server is asynchronous: the method where the command is called is not interrupted after is has been executed.

If there is an On Server Stop Database Method, it is executed after the delay set by the time parameter, or after all clients have disconnected, depending on your parameters.

The action of the QUIT 4D command used in a stored procedure is the same as the one for the Quit command of the 4D Server File menu: it causes a dialog box to appear on each client machine indicating that the server is about to quit.

Example

The project method listed here is associated with the Quit or Exit menu item in the File menu.

      ` M_FILE_QUIT Project Method

   CONFIRM("Are you sure that you want to quit?")
   If (OK=1)
      QUIT 4D
   End if

See Also

On Exit Database Method, On Server Shutdown Database Method.


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next