문제

I have a custom observer class derived from CBase, MConnectionMonitorObserver, and QObject(for signals) that I use to observe events from RConnectionMonitor.

When I call the RConnectionMonitor::NotifyEventL passing the observer instance, the application crashes saying that a thread has panicked.

What I'm trying to do here is to listen to the network events asynchronously without blocking the main thread.

EDIT: Should I use an active object to hold the RConnectionMonitor object?

Best regards

도움이 되었습니까?

해결책

The problem was, as @James commented, that I was registering for events before I established the connection to the connection monitor server.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top