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

org.jboss.ejb.protocol.remote.WrapperMessageOutputStream Maven / Gradle / Ivy

Go to download

Client library for EJB applications working against Wildfly - Jakarta EE Variant

There is a newer version: 5.0.8.Final
Show newest version
package org.jboss.ejb.protocol.remote;

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

import org.jboss.remoting3.MessageOutputStream;

/**
 * Extended version of DataOutputStream that does not flush before close
 *
 * @author Stuart Douglas
 */
class WrapperMessageOutputStream extends MessageOutputStream {

    private final MessageOutputStream underlyingMessage;
    private final OutputStream delegate;

    WrapperMessageOutputStream(MessageOutputStream underlyingMessage, OutputStream delegate) {
        this.underlyingMessage = underlyingMessage;
        this.delegate = delegate;
    }

    @Override
    public void write(int b) throws IOException {
        delegate.write(b);
    }

    @Override
    public void flush() throws IOException {
        delegate.flush();
    }

    @Override
    public void close() throws IOException {
        delegate.close();
    }

    @Override
    public MessageOutputStream cancel() {
        return underlyingMessage.cancel();
    }

    @Override
    public void write(byte[] b) throws IOException {
        delegate.write(b);
    }

    @Override
    public void write(byte[] b, int off, int len) throws IOException {
        delegate.write(b, off, len);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy