public interface AbortingReason
Modifier and Type | Method and Description |
---|---|
void |
execute()
Called to process this aborting reason.
|
void |
finish()
Called after all processing is done, and just before deactivating
the execution.
|
AuResponse |
getResponse()
Returns the response representing this aborting reason.
|
boolean |
isAborting()
Returns whether to abort the execution.
|
boolean isAborting()
void execute()
UiEngine
processes all events,
before generating the responses to the client.
Note: it is always called even if isAborting()
returns false.
Note: execute()
is called before generating
the responses to the client, while getResponse()
is called
when generating the responses.
The calling sequence: execute()
, getResponse()
,
and then finish()
.
getResponse()
AuResponse getResponse()
UiEngine
generates the responses to
client. Actually, it is called as the last step after
generating all other responses. In other words, the response
returned by this method, if any, will become the last response.
Note: don't modify the components in getResponse()
, since
it is called after all other responses are generated.
Note: it is always called even if isAborting()
returns false.
Note: execute()
is called before generating
the responses to the client, while getResponse()
is called
when generating the responses.
execute()
void finish()
Note: it is always called even if isAborting()
returns false.
The calling sequence: execute()
, getResponse()
,
and then finish()
.
Copyright © 2005-2023 Potix Corporation. All Rights Reserved.