コード例 #1
0
ファイル: timer_symbian.cpp プロジェクト: deveck/Deveck.TAM
void CPjTimerEntry::RunL() 
{
    --timer_heap_->cur_size;
    entry_->_timer_id = NULL;
    entry_->cb(timer_heap_, entry_);
    
    // Finger's crossed!
    delete this;
}
コード例 #2
0
ファイル: timer_symbian.cpp プロジェクト: avble/natClientEx
void CPjTimerEntry::RunL() 
{
    if (interval_left_ > 0) {
	Schedule();
	return;
    }
    
    remove_entry(timer_heap_, this);
    entry_->cb(timer_heap_, entry_);
    
    // Finger's crossed!
    delete this;
}