gui\Application::ping PHP 메소드

ping() 공개 메소드

Returns the communication time between php and lazarus
public ping ( ) : float
리턴 float
    public function ping()
    {
        $now = microtime(true);
        $this->waitCommand('ping', [(string) $now]);
        return microtime(true) - $now;
    }