mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
6d5f9ddfff
Summary: This will allow them to clean up resources when a web worker goes away. Reviewed By: mhorowitz, lexs Differential Revision: D2994721 fb-gh-sync-id: c7ca1afc7290e85038cf692a139f6478dba0ef61 shipit-source-id: c7ca1afc7290e85038cf692a139f6478dba0ef61
26 lines
680 B
Java
26 lines
680 B
Java
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
package com.facebook.react.bridge;
|
|
|
|
import com.facebook.proguard.annotations.DoNotStrip;
|
|
|
|
@DoNotStrip
|
|
public interface ReactCallback {
|
|
|
|
@DoNotStrip
|
|
void call(ExecutorToken executorToken, int moduleId, int methodId, ReadableNativeArray parameters);
|
|
|
|
@DoNotStrip
|
|
void onBatchComplete();
|
|
|
|
@DoNotStrip
|
|
void onExecutorUnregistered(ExecutorToken executorToken);
|
|
}
|