List of usage examples for com.vaadin.server DownloadStream setBufferSize
public void setBufferSize(int bufferSize)
From source file:org.lucidj.vaadinui.BundleResource.java
License:Apache License
@Override public DownloadStream getStream() { try {//w w w . j ava2 s .com DownloadStream ds = new DownloadStream(resourceUrl.openStream(), getMIMEType(), getFilename()); ds.setBufferSize(getBufferSize()); ds.setCacheTime(getCacheTime()); return (ds); } catch (IOException e) { throw new IllegalArgumentException(e); } }