raklib\protocol\Packet::clean PHP Method

clean() public method

public clean ( )
    public function clean()
    {
        $this->buffer = null;
        $this->offset = 0;
        $this->sendTime = null;
        return $this;
    }

Usage Example

コード例 #1
0
ファイル: DataPacket.php プロジェクト: TylerAndrew/Steadfast2
 public function clean()
 {
     $this->packets = [];
     $this->seqNumber = \null;
     return parent::clean();
 }
All Usage Examples Of raklib\protocol\Packet::clean