IBM Worklight v5.0.5 > Develop IBM Worklight applications > Develop the server side of an IBM Worklight application > Implement adapter proceduresThe Rhino container
IBM Worklight uses Rhino as the engine for running the JavaScript script used to implement adapter procedures.
Rhino is an open source JavaScript container developed by Mozilla that...
- Compiles the JavaScript code into byte code, which runs faster than interpreted code.
- Provides access to Java code directly from JavaScript.
For example:
var date = new java.util.Date();
var millisec = date.getTime();
Parent Implement adapter procedures