public function read()

in src/GCPBidiStreamingCall.php [54:65]


    public function read()
    {
        if (!$this->has_real_call) {
            $this->createRealCall();
            $this->has_real_call = true;
        }
        $response = $this->real_call->read();
        if ($response) {
            $this->response = $response;
        }
        return $response;
    }