public function responses()

in src/GCPServerStreamCall.php [56:67]


    public function responses()
    {
        $response = $this->real_call->responses();
        // Since the last response is empty for the server streaming RPC,
        // the second last one is the last RPC response with payload.
        // Use this one for searching the affinity key.
        // The same as BidiStreaming.
        if ($response) {
            $this->response = $response;
        }
        return $response;
    }