thread.
| Chave | Tipo | Obrigatório |
|---|---|---|
| OnBlock | String | -- |
| OnStart | String | -- |
| OnStop | String | -- |
| OnError | String | -- |
| OnSelect | String | -- |
| OnSend | String | -- |
A obrigatoriedade funciona de maneira diferente da convencional, pois não é obrigado informar qualquer uma das chaves acima, porém, quando a chave é criada na configuração temos a obrigação de informar o nome da função que fará atendimento da callback.
Chaves da sessão
Mais detalhes sobre User Exits, consulte
Exemplos de configuração
Arquivo appserver.ini
[UE_01] OnBlock=ON_BLOCK_01 OnStart=ON_START_01 OnStop=ON_STOP_01 OnError=ON_ERROR_01 OnSelect=ON_SELECT_01 OnSend=ON_SEND_01 [UE_02] OnBlock=ON_BLOCK_02 OnStart=ON_START_02 OnStop=ON_STOP_02 OnError=ON_ERROR_02 OnSelect=ON_SELECT_02 OnSend=ON_SEND_02
JSON
jConfig['UE_01'] := JsonObject():new() jConfig['UE_01']['OnBlock'] := ON_BLOCK_01 jConfig['UE_01']['OnStart'] := ON_START_01 jConfig['UE_01']['OnStop'] := ON_STOP_01 jConfig['UE_01']['OnError'] := ON_ERROR_01 jConfig['UE_01']['OnSelect'] := ON_SELECT_01 jConfig['UE_01']['OnSend'] := ON_SEND_01 jConfig['UE_02'] := JsonObject():new() jConfig['UE_01']['OnBlock'] := ON_BLOCK_02 jConfig['UE_02']['OnStart'] := ON_START_02 jConfig['UE_02']['OnStop'] := ON_STOP_02 jConfig['UE_02']['OnError'] := ON_ERROR_02 jConfig['UE_02']['OnSelect'] := ON_SELECT_02 jConfig['UE_01']['OnSend'] := ON_SEND_02
Import HTML Content
Visão Geral
Conteúdo das Ferramentas