📄 compressionstrategy.java
字号:
/* * $Id: CompressionStrategy.java 8077 2007-08-27 20:15:25Z aperepel $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.util.compression;import java.io.IOException;/** * <code>CompressionStrategy</code> is a base interface for Different compression * strategies */public interface CompressionStrategy{ /** * The fully qualified class name of the fallback * <code>CompressionStrategy</code> implementation class to use, if no other * can be found. the default is * <code>org.mule.util.compression.GZipCompression</code> */ String COMPRESSION_DEFAULT = "org.mule.util.compression.GZipCompression"; /** * JDK1.3+ 'Service Provider' specification ( * http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html ) */ String SERVICE_ID = "META-INF/services/org.mule.util.compression.CompressionStrategy"; byte[] compressByteArray(byte[] bytes) throws IOException; byte[] uncompressByteArray(byte[] bytes) throws IOException; boolean isCompressed(byte[] bytes) throws IOException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -