opentok-accelerator-core
Advanced tools
Changelog
[2.0.0]
Core
is now a constructor, meaning that multiple instances may be used simultaneously within a single application. Previously, core
was initialized in the following manner:
const otCore = require('opentok-accelerator-core');
otCore.init(options);
In 2.0
, this becomes:
const Core = require('opentok-accelerator-core');
const otCore = new Core(options);