You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To create your own adapter, you should do the following:
/** if you want to create an adapter for your subscriber, do the following:**/const{ CustomSubscriber }=require('CustomSubscriber');classCustomAdapter{constructor(stream,settings){this.stream=stream;this.settings=settings||{};this.subscriber=newCustomSubscriber(this.settings);}// your logic}module.exports=CustomAdapter;