/**
  * Sets streaming mode on. In this case, the data will be streamed to the server in chunks as it
  * is read from disk rather than buffered in memory. Many servers are not compatible with this
  * feature.
  *
  * @param streamRequest true to set streaming mode on, false otherwise.
  */
 public void setStreamingModeOn(boolean streamRequest) {
   caller.setStreamingModeOn(streamRequest);
 }