concern
Version:
A library for seperating your application logic into concerns.
40 lines (23 loc) • 539 B
JavaScript
import beof from 'beof';
import DeadLetters from './DeadLetters';
/**
* NullReference is a reference that we could not resolve.
*/
class NullReference {
constructor(path, deadLetters) {
beof({ path }).string();
beof({ deadLetters }).instance(DeadLetters);
this._path = path;
this._deadLetters = deadLetters;
}
path() {
}
watch() {
}
unwatch() {
}
tell(message, from) {
this._deadLetters.tell(message, from);
}
}
export default NullReference