本文整理汇总了C++中StreamBuffer::IsEmpty方法的典型用法代码示例。如果您正苦于以下问题:C++ StreamBuffer::IsEmpty方法的具体用法?C++ StreamBuffer::IsEmpty怎么用?C++ StreamBuffer::IsEmpty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StreamBuffer
的用法示例。
在下文中一共展示了StreamBuffer::IsEmpty方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Free
// 释放空间
void SendBuffer::Free(int32_t len)
{
if (len <= 0)
{
return;
}
AUTO_LOCK(_locker);
_buf.Free(len);
assert(!_buf.IsFull());
while (!_buf.IsFull() && !_standby_list.empty())
{
StreamBuffer<kStandbyCapacity>* standby = _standby_list.front();
int32_t move_len = 0;
const char * data = standby->Peek(move_len);
assert(data && move_len > 0);
int32_t push_len = _buf.Push(data, move_len);
assert(push_len > 0);
standby->Free(push_len);
if (standby->IsEmpty())
{
ObjectPool<StreamBuffer<kStandbyCapacity>>::Instance().Delete(standby);
_standby_list.pop_front();
}
}
}