Job
NAME
Test::Async::Job - a job record task
DESCRIPTION
Class defines a job entry for Test::Async::JobMgr.
ATTRIBUTES
Int:D $.id
Job ID number. Autoincerements.
Callable:D $.code
User code to be executed.
Bool $.async
If True then the job must be executed asynchronously.
Promise $.promise
Job completion promise. Undefined until the job is invoked. Set to a Promise instance as soon as job starts execution and is kept with job code return value.
METHODS
start(-- Promise:D)>
Starts job in a thread.
invoke(-- Promise:D)>
Starts job instantly in the current thread.
is-started(-- Bool)>
True if job has been started.
is-completed(-- Bool)>
True if job has completed.
SEE ALSO
COPYRIGHT
(c) 2020-2023, Vadim Belman [email protected]
LICENSE
Artistic License 2.0
See the LICENSE file in this distribution.