MCPcopy Create free account
hub / github.com/OpenZWave/open-zwave / GetSendQueueCount

Function GetSendQueueCount

cpp/src/Driver.h:232–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected