The given {@code Runnable} argument represents the rest of the execution to occur on this thread.This does not necessarily mean the rest of the execution until the work (e.g. responding to a request) is complete. Execution may involve multiple parallel (but not concurrent) threads of execution because of blocking IO or asynchronous APIs.
All exceptions thrown by this method will be ignored. @param execType indicates whether this is a compute (e.g. request handling) or blocking IO thread @param continuation the “rest” of the execution
|
|