Test::Async::Job
- a job record task
Class defines a job entry for Test::Async::JobMgr
.
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.
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.
Test::Async::JobMgr
, Test::Async::Hub
Vadim Belman <vrurg@cpan.org>