You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
Introduce an exit request API with wait-for-exit method. Methods should be defined as follows:
A method to request that the application exit with a given exit code (non blocking) (e.g. requestExit(int); code must be between 0 and 255 (inclusive))
A method to request that the application exit with no code (0 is implied) (non blocking) (e.g. requestExit())
A method to wait for an exit request; this method returns the requested exit code (blocking) (e.g. awaitExit())
The text was updated successfully, but these errors were encountered:
Description
Introduce an exit request API with wait-for-exit method. Methods should be defined as follows:
requestExit(int)
; code must be between 0 and 255 (inclusive))requestExit()
)awaitExit()
)The text was updated successfully, but these errors were encountered: