Interface Worker<CTX,E extends Exception>
- Type Parameters:
CTX- The context type to use, can by anyComponent, service or POJO.E- The exception type of theWorker's erroneous termination.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A
Worker represents an (atomic) operation applied to a context and
(in contrast to a Command) not returning any result, all of which
encapsulated in an object (as of object oriented programming). A
Worker is created by a client (e.g. the business logic) and passed to
something like a command-bus or command-processor for execution.-
Method Summary
-
Method Details
-
execute
-