-
public class ProxyJavaScriptExecutor extends JavaScriptExecutor
JavaScript executor that delegates JS calls processed by native code back to a java version of the native executor interface.
When set as a executor with CatalystInstance.Builder, catalyst native code will delegate low level javascript calls to the implementation of JavaJSExecutor interface provided with the constructor of this class.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
ProxyJavaScriptExecutor.Factory
-
Constructor Summary
Constructors Constructor Description ProxyJavaScriptExecutor(JavaJSExecutor executor)
Create ProxyJavaScriptExecutor instance
-
Method Summary
-
-
Constructor Detail
-
ProxyJavaScriptExecutor
ProxyJavaScriptExecutor(JavaJSExecutor executor)
Create ProxyJavaScriptExecutor instance- Parameters:
executor
- implementation of JavaJSExecutor which will be responsible for handlingjavascript calls
-
-
Method Detail
-
close
void close()
Close this executor and cleanup any resources that it was using. No further calls are expectedafter this. TODO mhorowitz: This may no longer be used; check and delete if possible.
-
-
-
-