Package ratpack.file.internal

Examples of ratpack.file.internal.ShouldCompressPredicate


    this.execController = launchConfig.getExecController();
    this.execControl = execController.getControl();

    if (launchConfig.isCompressResponses()) {
      ImmutableSet<String> blacklist = launchConfig.getCompressionMimeTypeBlackList();
      this.shouldCompress = new ShouldCompressPredicate(
        launchConfig.getCompressionMinSize(),
        launchConfig.getCompressionMimeTypeWhiteList(),
        blacklist.isEmpty() ? ActivationBackedMimeTypes.getDefaultExcludedMimeTypes() : blacklist
      );
    } else {
View Full Code Here

TOP

Related Classes of ratpack.file.internal.ShouldCompressPredicate

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.