This method only sends the content once.
Overrides Response::sendContent
public function sendContent() {
  if ($this->streamed) {
    return;
  }
  $this->streamed = true;
  if (null === $this->callback) {
    throw new \LogicException('The Response callback must not be null.');
  }
  call_user_func($this->callback);
}