forawait (let data of socket.receiver('foo')) { console.log("forawait -> data", data) } })();
} })();
frondend
1 2 3 4 5
let socket = socketClusterClient.create();
forawait (let event of socket.listener('connect')) { socket.transmit('foo', 123); }
上述程式碼執行的時候
Backend 會因為 await sleep(); 非同步問題
socket.receiver('foo') 在非同步之後
會無法執行到 console.log("forawait -> data", data)
所有的情境都會造成訊息的丟失
所以需要做一些調整
調整後
如果只是調整順序的話並不能解決問題
Backend
Bad
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
(async () => { forawait (let {socket} of agServer.listener('connection')) {
(async () => { // This will not work because the iterator is not yet created at this point. let fooStream = socket.receiver('foo');
// If any messages arrive during this time, they will be ignored! awaitdoSomethingWhichTakesAFewSeconds();
// The iterator gets created (and starts buffering) here! forawait (let data of fooStream) { // ... } })();
} })();
Backend
Good
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
(async () => { forawait (let {socket} of agServer.listener('connection')) {
(async () => { // This will create a consumable which will start buffering messages immediately. let fooStreamConsumable = socket.receiver('foo').createConsumer();
awaitsleep();
// This loop will start from the beginning of the buffer. forawait (let data of fooStreamConsumable) { console.log("forawait -> data", data) } })();