node-datachannel
Version:
WebRTC For Node.js and Electron. libdatachannel node bindings.
34 lines (25 loc) • 874 B
Plain Text
class RtcpReceivingSessionWrapper : public Napi::ObjectWrap<RtcpReceivingSessionWrapper>
{
public:
static Napi::FunctionReference constructor;
static Napi::Object Init(Napi::Env env, Napi::Object exports);
RtcpReceivingSessionWrapper(const Napi::CallbackInfo &info);
~RtcpReceivingSessionWrapper();
std::shared_ptr<rtc::RtcpReceivingSession> getSessionInstance();
// Functions
// Callbacks
private:
static std::unordered_set<RtcpReceivingSessionWrapper *> instances;
std::shared_ptr<rtc::RtcpReceivingSession> mSessionPtr = nullptr;
};