| 230 | string GetLibraryVersion()const{ return m_libraryVersion; } |
| 231 | string GetLibraryTypeName()const{ return m_libraryTypeName; } |
| 232 | int32 GetSendQueueCount()const |
| 233 | { |
| 234 | int32 count = 0; |
| 235 | for( int32 i=0; i<MsgQueue_Count; ++i ) |
| 236 | { |
| 237 | count += (int32) (m_msgQueue[i].size()); |
| 238 | } |
| 239 | return count; |
| 240 | } |
| 241 | |
| 242 | /** |
| 243 | * A version of GetNode that does not have the protective "lock" and "release" requirement. |