Initializing the Instruction Stream Engine Object
Application Scenario
Initialize the instruction stream engine object to provide APIs.
Development Process
- Create an instruction stream engine object.
- Create a JNI callback object for the instruction stream engine.
Encoding Instance
public class Activity implements NativeListener {
private InstructionEngine engine = new InstructionEngine();
private JniCallback jniCallback = new JniCallback();
}
Parent topic: API Development Process