Elastica\Response::getEngineTime PHP 메소드

getEngineTime() 공개 메소드

Time request took.
public getEngineTime ( ) : integer
리턴 integer Time request took
    public function getEngineTime()
    {
        $data = $this->getData();
        if (!isset($data['took'])) {
            throw new NotFoundException('Unable to find the field [took]from the response');
        }
        return $data['took'];
    }