(Dict.Prop p, Box b, Object was, Object now, Collection<String> strings)
| 102 | |
| 103 | |
| 104 | private void fire(Dict.Prop p, Box b, Object was, Object now, Collection<String> strings) { |
| 105 | strings.forEach((address) -> messageQueue.accept(address, new Quad<>(p, b, was, now))); |
| 106 | } |
| 107 | |
| 108 | public MessageQueue<Quad<Dict.Prop, Box, Object, Object>, String> getQueue() { |
| 109 | return messageQueue; |