
io.undertow.channels.DelegatingStreamSinkChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.ops4j.pax.tipi.undertow.core
Show all versions of org.ops4j.pax.tipi.undertow.core
This OSGi bundle wraps ${tipi.orig.artifactId}-${tipi.orig.version}.
The newest version!
/*
* JBoss, Home of Professional Open Source.
* Copyright 2014 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.undertow.channels;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.util.concurrent.TimeUnit;
import org.xnio.ChannelListener;
import org.xnio.ChannelListeners;
import org.xnio.Option;
import org.xnio.XnioExecutor;
import org.xnio.XnioIoThread;
import org.xnio.XnioWorker;
import org.xnio.channels.StreamSinkChannel;
import org.xnio.channels.StreamSourceChannel;
/**
* @author Stuart Douglas
*/
public abstract class DelegatingStreamSinkChannel implements StreamSinkChannel {
protected final StreamSinkChannel delegate;
protected final ChannelListener.SimpleSetter writeSetter = new ChannelListener.SimpleSetter<>();
protected final ChannelListener.SimpleSetter closeSetter = new ChannelListener.SimpleSetter<>();
public DelegatingStreamSinkChannel(final StreamSinkChannel delegate) {
this.delegate = delegate;
delegate.getWriteSetter().set(ChannelListeners.delegatingChannelListener((T) this, writeSetter));
delegate.getCloseSetter().set(ChannelListeners.delegatingChannelListener((T) this, closeSetter));
}
public long transferFrom(final FileChannel src, final long position, final long count) throws IOException {
return delegate.transferFrom(src, position, count);
}
public XnioWorker getWorker() {
return delegate.getWorker();
}
public boolean isWriteResumed() {
return delegate.isWriteResumed();
}
public boolean flush() throws IOException {
return delegate.flush();
}
public void awaitWritable(final long time, final TimeUnit timeUnit) throws IOException {
delegate.awaitWritable(time, timeUnit);
}
public int write(final ByteBuffer src) throws IOException {
return delegate.write(src);
}
public long write(final ByteBuffer[] srcs, final int offset, final int length) throws IOException {
return delegate.write(srcs, offset, length);
}
public void awaitWritable() throws IOException {
delegate.awaitWritable();
}
public T setOption(final Option option, final T value) throws IllegalArgumentException, IOException {
return delegate.setOption(option, value);
}
public ChannelListener.Setter extends StreamSinkChannel> getCloseSetter() {
return closeSetter;
}
public ChannelListener.Setter extends StreamSinkChannel> getWriteSetter() {
return writeSetter;
}
public boolean supportsOption(final Option> option) {
return delegate.supportsOption(option);
}
public final long write(final ByteBuffer[] srcs) throws IOException {
return write(srcs, 0, srcs.length);
}
public void resumeWrites() {
delegate.resumeWrites();
}
public boolean isOpen() {
return delegate.isOpen();
}
public void shutdownWrites() throws IOException {
delegate.shutdownWrites();
}
public long transferFrom(final StreamSourceChannel source, final long count, final ByteBuffer throughBuffer) throws IOException {
return delegate.transferFrom(source, count, throughBuffer);
}
public XnioExecutor getWriteThread() {
return delegate.getWriteThread();
}
public void wakeupWrites() {
delegate.wakeupWrites();
}
public void close() throws IOException {
delegate.close();
}
public T getOption(final Option option) throws IOException {
return delegate.getOption(option);
}
public void suspendWrites() {
delegate.suspendWrites();
}
@Override
public XnioIoThread getIoThread() {
return delegate.getIoThread();
}
@Override
public int writeFinal(ByteBuffer src) throws IOException {
return delegate.writeFinal(src);
}
@Override
public long writeFinal(ByteBuffer[] srcs, int offset, int length) throws IOException {
return delegate.writeFinal(srcs, offset, length);
}
@Override
public long writeFinal(ByteBuffer[] srcs) throws IOException {
return delegate.writeFinal(srcs);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy