Subscribes to an using a one-time callback function. The crucial difference to is that once the callback is invoked , then it won't be invoked anymore.
Sample subscription code
sambaFrame.once('audioEnabled', (event) => {
console.log('This will be printed only once even if user enables audio 5 times');
});