| 69 | } |
| 70 | |
| 71 | POPAsyncSession::POPAsyncSession() |
| 72 | { |
| 73 | mSession = new POPSession(); |
| 74 | mQueue = new OperationQueue(); |
| 75 | mQueueCallback = new POPOperationQueueCallback(this); |
| 76 | mQueue->setCallback(mQueueCallback); |
| 77 | mConnectionLogger = NULL; |
| 78 | pthread_mutex_init(&mConnectionLoggerLock, NULL); |
| 79 | mInternalLogger = new POPConnectionLogger(this); |
| 80 | mSession->setConnectionLogger(mInternalLogger); |
| 81 | mOperationQueueCallback = NULL; |
| 82 | } |
| 83 | |
| 84 | POPAsyncSession::~POPAsyncSession() |
| 85 | { |
nothing calls this directly
no test coverage detected