예제 #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);
    }