-
-
Notifications
You must be signed in to change notification settings - Fork 578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Ch4] Promise subclassing / Promiseのキャンセル #6
Comments
https://gist.github.com/azu/11494644 キャンセル出来るPromiseのサブクラス書いてみたけど、Nativeのpromiseだと上手くいかない。 nativeのpromiseのsubclassは |
https://gist.github.com/azu/11497402 delegate version も書いてみた。 ref: Chapter 28. Subclassing Built-ins あんまりnative promiseの拡張って現実的じゃないのかな? 元から拡張のあるライブラリを使うほうが普通にいいのはわかってるけど、 class MyPromise extends Promise と書けるまで待たないとできない感じなのかな。 |
同じ試み。native promiseだと同じ動いてない感じがする。(Firefox 35、Chrome 36.0.1972.2 canary) ブラウザの実装自体も |
現段階だとNative Promiseのサブクラスの作り方がよくわかってない。 |
Service Workerまわりからこの辺の話が進みそう |
AbortController - Web APIs | MDN fetch周りからやっとcancelに関する仕様がDOMに入った |
cancelのやつをAbortControllerに合わせたほういいのかなー |
Ch4 #5
Promiseのサブクラスの作り方 と UseCase or Libraryについて
The text was updated successfully, but these errors were encountered: