All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.talend.esb.sam.agent.wiretap.CacheAndWriteTapOutputStream Maven / Gradle / Ivy

There is a newer version: 8.0.1.R2024-05-RT
Show newest version
package org.talend.esb.sam.agent.wiretap;


import org.apache.cxf.io.CacheAndWriteOutputStream;

import java.io.IOException;
import java.io.OutputStream;

public class CacheAndWriteTapOutputStream extends CacheAndWriteOutputStream {


    public CacheAndWriteTapOutputStream(OutputStream stream) {
        super(stream);
    }

    @Override
    protected void doClose() throws IOException {
        // Fixing TESB-14583
        resetOut(new OutputStream() {
            @Override
            public void write(int b) throws IOException {

            }
        }, false);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy