Fix event warning
This commit is contained in:
parent
e66d102e85
commit
cac92b43c7
@ -279,8 +279,17 @@ public class UpdateModule extends ReactContextBaseJavaModule {
|
|||||||
public void getLocalHashInfo(final String hash, final Promise promise) {
|
public void getLocalHashInfo(final String hash, final Promise promise) {
|
||||||
promise.resolve(updateContext.getKv("hash_" + hash));
|
promise.resolve(updateContext.getKv("hash_" + hash));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ReactMethod
|
||||||
|
public void addListener(String eventName) {
|
||||||
|
// Set up any upstream listeners or background tasks as necessary
|
||||||
|
}
|
||||||
|
|
||||||
|
@ReactMethod
|
||||||
|
public void removeListeners(Integer count) {
|
||||||
|
// Remove upstream listeners, stop unnecessary background tasks
|
||||||
|
}
|
||||||
|
|
||||||
/* 发送事件*/
|
/* 发送事件*/
|
||||||
public static void sendEvent(String eventName, WritableMap params) {
|
public static void sendEvent(String eventName, WritableMap params) {
|
||||||
((ReactContext) mContext).getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class).emit(eventName,
|
((ReactContext) mContext).getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class).emit(eventName,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user