ACTIHGUP |
actihgup is used to define the actions associated with an interruption in the event of disconnection.
[S]actihgup(40) Char
# in the MENU supervisor
process
# declaration of the disconnection process
Global Onevent ITM_MENU Call MENU From EXEFNC
actihgup = "FIN" :#
DIsconnection Process
Men =GMENDEP
Goto END
# in the END disconnection
process
Call DECONNECT From GESUSER
End
actihgup contains the name of a process executed in the event of disconnection. This disconnection may have been triggered by one of the following:
· Accidental Line Break
· Clicking on the Cross
The process for which the name is given by actihgup cannot display anything since the line may have been cut. When its execution is terminated, Adonix stops. In particular, it is recommended to anticipate error management by Onerrgo, in order to prevent this program from being stopped on an error.
On the other hand, this process cannot terminate a transaction whether by Commit or Rollback, because it cannot be from the same level of locality as the process that initiated it.
If a transaction is in progress when the disconnection occurs, it is cancelled automatically (Rollback). The user will be warned about it.
This variable value modification is considered by Adonix immediately. Therefore, there is no restricted process for the user.
No associated error
|
|