示例#1
0
 public void Free()
 {
     packet     = null;
     frame      = 0;
     stackTrace = null;
     m_pool.Back(this);
 }
示例#2
0
    public virtual void Destroy()
    {
        if (destroyed)
        {
            return;
        }

        Reset();

        m_pool.Back(this);
    }
示例#3
0
    public void Destroy()
    {
        if (destroyed)
        {
            return;
        }

        destroyed = true;
        Frame     = 0;
        cache     = null;
        packet    = null;

        m_pool.Back(this);
    }