git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: 8716d3e0c84403a10b8fd9d5199ae126cb8f8577

Files: 8716d3e0c84403a10b8fd9d5199ae126cb8f8577 / messageQueue.js

184 bytesRaw
1module.exports = class MessageQueue {
2 constructor (kernel) {
3 this._queue = []
4 }
5
6 add (message) {
7 this.currentMessage = message
8 return this.kernel.run(message)
9 }
10
11}
12

Built with git-ssb-web