org.xnio.conduits.ConduitWritableMessageChannel Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
/*
* JBoss, Home of Professional Open Source
*
* Copyright 2013 Red Hat, Inc. and/or its affiliates.
*
* 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 org.xnio.conduits;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.concurrent.TimeUnit;
import org.xnio.ChannelListener;
import org.xnio.Option;
import org.xnio.XnioExecutor;
import org.xnio.XnioIoThread;
import org.xnio.XnioWorker;
import org.xnio.channels.CloseListenerSettable;
import org.xnio.channels.Configurable;
import org.xnio.channels.WritableMessageChannel;
import org.xnio.channels.WriteListenerSettable;
/**
* A writable message channel which is backed by a message sink conduit.
*
* @author David M. Lloyd
*/
public final class ConduitWritableMessageChannel implements WritableMessageChannel, WriteListenerSettable, CloseListenerSettable, Cloneable {
private final Configurable configurable;
private MessageSinkConduit conduit;
private ChannelListener super ConduitWritableMessageChannel> writeListener;
private ChannelListener super ConduitWritableMessageChannel> closeListener;
/**
* Construct a new instance.
*
* @param configurable the configurable to delegate configuration requests to
* @param conduit the initial conduit to use for data transport
*/
public ConduitWritableMessageChannel(final Configurable configurable, final MessageSinkConduit conduit) {
this.configurable = configurable;
this.conduit = conduit;
conduit.setWriteReadyHandler(new WriteReadyHandler.ChannelListenerHandler(this));
}
/**
* Get the underlying conduit for this channel.
*
* @return the underlying conduit for this channel
*/
public MessageSinkConduit getConduit() {
return conduit;
}
/**
* Set the underlying conduit for this channel.
*
* @param conduit the underlying conduit for this channel
*/
public void setConduit(final MessageSinkConduit conduit) {
this.conduit = conduit;
}
public ChannelListener super ConduitWritableMessageChannel> getWriteListener() {
return writeListener;
}
public void setWriteListener(final ChannelListener super ConduitWritableMessageChannel> writeListener) {
this.writeListener = writeListener;
}
public ChannelListener super ConduitWritableMessageChannel> getCloseListener() {
return closeListener;
}
public void setCloseListener(final ChannelListener super ConduitWritableMessageChannel> closeListener) {
this.closeListener = closeListener;
}
public ChannelListener.Setter getWriteSetter() {
return new WriteListenerSettable.Setter(this);
}
public ChannelListener.Setter getCloseSetter() {
return new CloseListenerSettable.Setter(this);
}
public void suspendWrites() {
conduit.suspendWrites();
}
public void resumeWrites() {
conduit.resumeWrites();
}
public void wakeupWrites() {
conduit.wakeupWrites();
}
public boolean isWriteResumed() {
return conduit.isWriteResumed();
}
public void awaitWritable() throws IOException {
conduit.awaitWritable();
}
public void awaitWritable(final long time, final TimeUnit timeUnit) throws IOException {
conduit.awaitWritable(time, timeUnit);
}
public boolean send(final ByteBuffer dst) throws IOException {
return conduit.send(dst);
}
public boolean send(final ByteBuffer[] srcs) throws IOException {
return conduit.send(srcs, 0, srcs.length);
}
public boolean send(final ByteBuffer[] dsts, final int offs, final int len) throws IOException {
return conduit.send(dsts, offs, len);
}
@Override
public boolean sendFinal(ByteBuffer buffer) throws IOException {
return conduit.sendFinal(buffer);
}
@Override
public boolean sendFinal(ByteBuffer[] buffers) throws IOException {
return conduit.sendFinal(buffers, 0, buffers.length);
}
@Override
public boolean sendFinal(ByteBuffer[] buffers, int offs, int len) throws IOException {
return conduit.sendFinal(buffers, offs, len);
}
public boolean flush() throws IOException {
return conduit.flush();
}
public boolean supportsOption(final Option> option) {
return configurable.supportsOption(option);
}
public T getOption(final Option option) throws IOException {
return configurable.getOption(option);
}
public T setOption(final Option option, final T value) throws IllegalArgumentException, IOException {
return configurable.setOption(option, value);
}
public void shutdownWrites() throws IOException {
conduit.terminateWrites();
}
public boolean isOpen() {
return ! conduit.isWriteShutdown();
}
public void close() throws IOException {
conduit.truncateWrites();
}
@Deprecated
public XnioExecutor getWriteThread() {
return conduit.getWriteThread();
}
public XnioIoThread getIoThread() {
return conduit.getWriteThread();
}
public XnioWorker getWorker() {
return conduit.getWorker();
}
/**
* Duplicate this channel. Changing the delegate conduit in one channel will not affect the other.
*
* @return the cloned channel
*/
public ConduitWritableMessageChannel clone() {
try {
return (ConduitWritableMessageChannel) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(e);
}
}
}