タイプスクリプトを介して node@8.11.1 で highland@2.13.0 を使用しています。このコード スニペットを考えると、次のようになります。
import * as highland from "highland";
import * as lodash from "lodash/fp";
const range = lodash.range(0, 10);
const createPromise = async (i: number): Promise<number> => {
if (i % 2 !== 0) {
return Promise.resolve(i);
}
return Promise.resolve(null);
};
highland(range).map((i) => {
return highland(createPromise(i));
})
.flatten() // resolving the promises
.compact() // removing the null values
.toArray((items) => console.log(items));
それは私の予想される出力を返します:
[ 1, 3, 5, 7, 9 ]
しかし、私のコードベースには、null
値を返さない約束がありますが、約束を拒否します。ただし、その場合、highland はクラッシュします。
const createPromise = async (i: number): Promise<number> => {
if (i % 2 !== 0) {
return Promise.resolve(i);
}
return Promise.reject("Some rejection message");
};
highland(range).map((i) => {
return highland(createPromise(i));
})
.flatten()
.toArray((items) => console.log(items));
スローします:
events.js:188
throw err;
^
Error: Unhandled "error" event. (Invalid)
at Stream.emit (events.js:186:19)
at /home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1908:18
at /home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1593:9
at Stream.s._send (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1549:9)
at Stream.write (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1647:18)
at Stream._send (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:974:26)
at push (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1515:19)
at /home/philipp/rate-pipeline/node_modules/highland/lib/index.js:3918:13
at Stream.s._send (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1549:9)
at Stream.write (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1647:18)
at Stream._send (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:974:26)
at push (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1515:19)
at /home/philipp/rate-pipeline/node_modules/highland/lib/index.js:2458:13
at Stream.s._send (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1549:9)
at Stream.write (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1647:18)
at Stream._send (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:974:26)
at Stream.write (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1647:18)
at /home/philipp/rate-pipeline/node_modules/highland/lib/index.js:680:15
at /home/philipp/rate-pipeline/node_modules/highland/lib/index.js:3606:17
at /home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1593:9
at Stream.s._send (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1549:9)
at Stream.write (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1647:18)
at Stream._send (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:974:26)
at Stream.write (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:1647:18)
at /home/philipp/rate-pipeline/node_modules/highland/lib/index.js:680:15
at Immediate._onImmediate (/home/philipp/rate-pipeline/node_modules/highland/lib/index.js:541:17)
at runCallback (timers.js:794:20)
at tryOnImmediate (timers.js:752:5)
at processImmediate [as _immediateCallback] (timers.js:729:5)
約束の拒否をnull値に変換し、回避策としてそれらを変換できることは知っていますcompact
が、むしろ約束の拒否自体に対処します。
成功した Promise ストリームでのみ作業し、highland を使用して失敗したストリームを無視するにはどうすればよいですか? エラーイベントをどのように処理すればよいですか?