UNPKG

concern

Version:

A library for seperating your application logic into concerns.

16 lines (10 loc) 281 B
import Mailbox from './Mailbox'; /** * Dispatcher provides an API for handling the actual delivery of messages. * @param {ConcernFactory} factory` */ class Dispatcher extends Mailbox.EnqueueListener { executeChildError() {} execute() {} } export default Dispatcher