-
public interface JSIModule
Marker interface used to represent a JSI Module.
-
-
Method Summary
Modifier and Type Method Description abstract void
initialize()
This is called at the end of createCatalystInstance afterthe CatalystInstance has been created, in order to initialize NativeModules that require theCatalystInstance or JS modules. abstract void
onCatalystInstanceDestroy()
Called before {CatalystInstance#onHostDestroy} -
-
Method Detail
-
initialize
abstract void initialize()
This is called at the end of createCatalystInstance afterthe CatalystInstance has been created, in order to initialize NativeModules that require theCatalystInstance or JS modules.
-
onCatalystInstanceDestroy
abstract void onCatalystInstanceDestroy()
Called before {CatalystInstance#onHostDestroy}
-
-
-
-