com.facebook.react.devsupport.JSCHeapCapture Java Examples
The following examples show how to use
com.facebook.react.devsupport.JSCHeapCapture.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DebugCorePackage.java From react-native-GPay with MIT License | 6 votes |
@Override public List<ModuleSpec> getNativeModules(final ReactApplicationContext reactContext) { List<ModuleSpec> moduleSpecList = new ArrayList<>(); moduleSpecList.add( ModuleSpec.nativeModuleSpec( JSCHeapCapture.class, new Provider<NativeModule>() { @Override public NativeModule get() { return new JSCHeapCapture(reactContext); } })); moduleSpecList.add( ModuleSpec.nativeModuleSpec( JSCSamplingProfiler.class, new Provider<NativeModule>() { @Override public NativeModule get() { return new JSCSamplingProfiler(reactContext); } })); return moduleSpecList; }
Example #2
Source File: ThreadBaseReactPackage.java From react-native-threads with MIT License | 6 votes |
@Override public List<NativeModule> createNativeModules(ReactApplicationContext catalystApplicationContext) { return Arrays.<NativeModule>asList( // Core list new AndroidInfoModule(catalystApplicationContext), new ExceptionsManagerModule(reactInstanceManager.getDevSupportManager()), new AppStateModule(catalystApplicationContext), new TimingModule(catalystApplicationContext, reactInstanceManager.getDevSupportManager()), new UIManagerStubModule(catalystApplicationContext), new SourceCodeModule(catalystApplicationContext), new JSCHeapCapture(catalystApplicationContext), // Main list new AsyncStorageModule(catalystApplicationContext), new IntentModule(catalystApplicationContext), new NetworkingModule(catalystApplicationContext), new VibrationModule(catalystApplicationContext), new WebSocketModule(catalystApplicationContext), new ThreadSelfModule(catalystApplicationContext), new DevSettingsModule(catalystApplicationContext, reactInstanceManager.getDevSupportManager()) ); }
Example #3
Source File: BaseReactPackage.java From react-native-workers with BSD 2-Clause "Simplified" License | 6 votes |
@Override public List<NativeModule> createNativeModules(ReactApplicationContext catalystApplicationContext) { return Arrays.<NativeModule>asList( // Core list new AndroidInfoModule(), new ExceptionsManagerModule(reactInstanceManager.getDevSupportManager()), new Timing(catalystApplicationContext, reactInstanceManager.getDevSupportManager()), new UIManagerStubModule(catalystApplicationContext), new SourceCodeModule(reactInstanceManager.getSourceUrl()), new JSCHeapCapture(catalystApplicationContext), // Main list new AsyncStorageModule(catalystApplicationContext), new IntentModule(catalystApplicationContext), new LocationModule(catalystApplicationContext), new NetworkingModule(catalystApplicationContext), new NetInfoModule(catalystApplicationContext), new VibrationModule(catalystApplicationContext), new WebSocketModule(catalystApplicationContext), new WorkerSelfModule(catalystApplicationContext) ); }
Example #4
Source File: BaseReactPackage.java From react-native-workers with BSD 2-Clause "Simplified" License | 5 votes |
@Override public List<Class<? extends JavaScriptModule>> createJSModules() { return Arrays.asList( DeviceEventManagerModule.RCTDeviceEventEmitter.class, JSTimersExecution.class, RCTEventEmitter.class, RCTNativeAppEventEmitter.class, com.facebook.react.bridge.Systrace.class, JSCHeapCapture.HeapCapture.class ); }