-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add support for Promises (part 1) #8
Milestone
Comments
rozele
added a commit
that referenced
this issue
Dec 22, 2015
Adds support for IPromise arguments in the last argument of native module methods. Additionally, adds checks during module initialization to ensure native module methods abide by the expected contract (i.e., void or Task return type, positioning of ICallback and IPromise arguments, etc.).
rozele
added a commit
that referenced
this issue
Feb 21, 2016
Adds support for IPromise arguments in the last argument of native module methods. Additionally, adds checks during module initialization to ensure native module methods abide by the expected contract (i.e., void or Task return type, positioning of ICallback and IPromise arguments, etc.).
rozele
added a commit
that referenced
this issue
Mar 1, 2016
Adds support for IPromise arguments in the last argument of native module methods. Additionally, adds checks during module initialization to ensure native module methods abide by the expected contract (i.e., void or Task return type, positioning of ICallback and IPromise arguments, etc.).
ebragge
added a commit
that referenced
this issue
Apr 8, 2016
PushNotificationModule provides access to badges, toast and remote push notifications for React Native JavaScript applications. Fixes #8
ebragge
added a commit
that referenced
this issue
Apr 20, 2016
PushNotificationModule provides access to badges, toast and remote push notifications for React Native JavaScript applications. Fixes #8
rozele
added a commit
that referenced
this issue
Apr 21, 2016
Adds support for IPromise arguments in the last argument of native module methods. Additionally, adds checks during module initialization to ensure native module methods abide by the expected contract (i.e., void or Task return type, positioning of ICallback and IPromise arguments, etc.).
ebragge
added a commit
that referenced
this issue
Apr 28, 2016
PushNotificationModule provides access to badges, toast and remote push notifications for React Native JavaScript applications. Fixes #8
rozele
added a commit
that referenced
this issue
May 17, 2016
Adds support for IPromise arguments in the last argument of native module methods. Additionally, adds checks during module initialization to ensure native module methods abide by the expected contract (i.e., void or Task return type, positioning of ICallback and IPromise arguments, etc.).
rozele
added a commit
that referenced
this issue
May 18, 2016
Adds support for IPromise arguments in the last argument of native module methods. Additionally, adds checks during module initialization to ensure native module methods abide by the expected contract (i.e., void or Task return type, positioning of ICallback and IPromise arguments, etc.).
GantMan
pushed a commit
to infinitered/react-native-windows
that referenced
this issue
Sep 29, 2016
Adds support for IPromise arguments in the last argument of native module methods. Additionally, adds checks during module initialization to ensure native module methods abide by the expected contract (i.e., void or Task return type, positioning of ICallback and IPromise arguments, etc.).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, we have the ICallback interface that allows users to respond to JavaScript with callback hooks. We also need support for promises.
The text was updated successfully, but these errors were encountered: