Package org.atmosphere.gwt.server.deflate

Examples of org.atmosphere.gwt.server.deflate.Deflater


   *            the compression level
   * @throws IOException
   *             on I/O error with the transport stream
   */
  public DeflaterOutputStream(OutputStream out, int level) throws IOException {
    deflater = new Deflater(level);
    deflater.setOut(out);
  }
View Full Code Here

TOP

Related Classes of org.atmosphere.gwt.server.deflate.Deflater

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.