2008-08-08 02:37:18 +02:00
|
|
|
/*
|
2008-08-08 03:27:24 +02:00
|
|
|
* JBoss, Home of Professional Open Source
|
2008-08-08 02:37:18 +02:00
|
|
|
*
|
2008-08-08 03:27:24 +02:00
|
|
|
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
|
|
|
|
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
|
|
|
|
* full listing of individual contributors.
|
2008-08-08 02:37:18 +02:00
|
|
|
*
|
2008-08-08 03:27:24 +02:00
|
|
|
* This is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed in the hope that it will be useful,
|
2008-08-08 02:37:18 +02:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2008-08-08 03:27:24 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2008-08-08 02:37:18 +02:00
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2008-08-08 03:27:24 +02:00
|
|
|
* License along with this software; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
2008-08-08 02:37:18 +02:00
|
|
|
*/
|
2008-08-08 03:40:10 +02:00
|
|
|
package org.jboss.netty.channel;
|
2008-08-08 02:37:18 +02:00
|
|
|
|
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
2008-08-09 16:52:19 +02:00
|
|
|
import org.jboss.netty.logging.InternalLogger;
|
2008-08-09 17:05:53 +02:00
|
|
|
import org.jboss.netty.logging.InternalLoggerFactory;
|
2008-08-08 02:37:18 +02:00
|
|
|
|
2008-08-11 09:33:19 +02:00
|
|
|
/**
|
2008-09-24 11:48:32 +02:00
|
|
|
* A skeletal {@link ChannelFuture} implementation which represents a
|
|
|
|
* {@link ChannelFuture} which has been completed already.
|
2008-08-11 09:33:19 +02:00
|
|
|
*
|
|
|
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
|
|
|
* @author Trustin Lee (tlee@redhat.com)
|
|
|
|
*
|
|
|
|
* @version $Rev$, $Date$
|
|
|
|
*/
|
2008-08-08 02:37:18 +02:00
|
|
|
public abstract class CompleteChannelFuture implements ChannelFuture {
|
|
|
|
|
2008-08-09 16:52:19 +02:00
|
|
|
private static final InternalLogger logger =
|
2008-08-09 17:05:53 +02:00
|
|
|
InternalLoggerFactory.getInstance(CompleteChannelFuture.class);
|
2008-08-08 02:37:18 +02:00
|
|
|
|
|
|
|
private final Channel channel;
|
|
|
|
|
2008-08-11 09:33:19 +02:00
|
|
|
/**
|
|
|
|
* Creates a new instance.
|
|
|
|
*
|
|
|
|
* @param channel the {@link Channel} associated with this future
|
|
|
|
*/
|
2008-08-08 02:37:18 +02:00
|
|
|
protected CompleteChannelFuture(Channel channel) {
|
|
|
|
if (channel == null) {
|
|
|
|
throw new NullPointerException("channel");
|
|
|
|
}
|
|
|
|
this.channel = channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addListener(ChannelFutureListener listener) {
|
|
|
|
try {
|
|
|
|
listener.operationComplete(this);
|
|
|
|
} catch (Throwable t) {
|
|
|
|
logger.warn(
|
|
|
|
"An exception was thrown by " +
|
|
|
|
ChannelFutureListener.class.getSimpleName() + ".", t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void removeListener(ChannelFutureListener listener) {
|
|
|
|
// NOOP
|
|
|
|
}
|
|
|
|
|
|
|
|
public ChannelFuture await() throws InterruptedException {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean await(long timeout, TimeUnit unit) throws InterruptedException {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean await(long timeoutMillis) throws InterruptedException {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ChannelFuture awaitUninterruptibly() {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean awaitUninterruptibly(long timeout, TimeUnit unit) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean awaitUninterruptibly(long timeoutMillis) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Channel getChannel() {
|
|
|
|
return channel;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isDone() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFailure(Throwable cause) {
|
|
|
|
// Unused
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSuccess() {
|
|
|
|
// Unused
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean cancel() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isCancelled() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|