Package org.apache.activemq.console.command.store.tar

Examples of org.apache.activemq.console.command.store.tar.TarOutputStream


    TarOutputStream stream;

    ExportStreamManager(OutputStream target, int version) throws IOException {
        this.target = target;
        this.version = version;
        stream = new TarOutputStream(new GZIPOutputStream(target));
        store("ver", new AsciiBuffer(""+version));
    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.console.command.store.tar.TarOutputStream

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.