| 370 | } |
| 371 | |
| 372 | ISessionNtfy* NtfyObjMgr::GetNameSession(int session_name) |
| 373 | { |
| 374 | SessionMap::iterator it = _session_map.find(session_name); |
| 375 | if (it != _session_map.end()) |
| 376 | { |
| 377 | return it->second; |
| 378 | } |
| 379 | else |
| 380 | { |
| 381 | return NULL; |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | KqueuerObj* NtfyObjMgr::GetNtfyObj(int type, int session_name) |
| 386 | { |