NAME
Zing::Logic::Worker - Worker Logic
ABSTRACT
Worker Process Logic Chain
SYNOPSIS
package Process;
use parent 'Zing::Process';
sub queues {
['tasks']
}
package main;
use Zing::Logic::Worker;
my $logic = Zing::Logic::Worker->new(process => Process->new);
# $logic->execute;
DESCRIPTION
This package provides the logic (or logic chain) to be executed by the worker process event-loop.
INHERITS
This package inherits behaviors from:
LIBRARIES
This package uses type constraints from:
ATTRIBUTES
This package has the following attributes:
interupt
interupt(Interupt)
This attribute is read-only, accepts (Interupt)
values, and is optional.
on_handle
on_handle(CodeRef)
This attribute is read-only, accepts (CodeRef)
values, and is optional.
on_perform
on_perform(CodeRef)
This attribute is read-only, accepts (CodeRef)
values, and is optional.
on_receive
on_receive(CodeRef)
This attribute is read-only, accepts (CodeRef)
values, and is optional.
on_register
on_register(CodeRef)
This attribute is read-only, accepts (CodeRef)
values, and is optional.
on_reset
on_reset(CodeRef)
This attribute is read-only, accepts (CodeRef)
values, and is optional.
on_suicide
on_suicide(CodeRef)
This attribute is read-only, accepts (CodeRef)
values, and is optional.
process
process(Process)
This attribute is read-only, accepts (Process)
values, and is required.
queues
queues(ArrayRef[Str])
This attribute is read-only, accepts (ArrayRef[Str])
values, and is optional.
relays
relays(HashRef[Queue])
This attribute is read-only, accepts (HashRef[Queue])
values, and is optional.
METHODS
This package implements the following methods:
flow
flow() : Flow
The flow method builds and returns the logic flow for the process event-loop.
signals
signals() : HashRef
The signals method builds and returns the process signal handlers.
AUTHOR
Al Newkirk, awncorp@cpan.org
LICENSE
Copyright (C) 2011-2019, Al Newkirk, et al.
This is free software; you can redistribute it and/or modify it under the terms of the The Apache License, Version 2.0, as elucidated in the "license file".