* Changed all package names to org.jboss.netty.*

* Added .classpath, .project and target to svn:ignore
This commit is contained in:
Trustin Lee 2008-08-08 01:40:10 +00:00
parent 1bc79ea2a4
commit 0202a01cf1
184 changed files with 662 additions and 662 deletions

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.bootstrap;
package org.jboss.netty.bootstrap;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.util.ArrayList;
import java.util.HashMap;
@ -33,12 +33,12 @@ import java.util.Map;
import java.util.Random;
import java.util.TreeMap;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelHandler;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelPipelineFactory;
import net.gleamynode.netty.channel.SimpleChannelHandler;
import net.gleamynode.netty.logging.Logger;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelHandler;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelPipelineFactory;
import org.jboss.netty.channel.SimpleChannelHandler;
import org.jboss.netty.logging.Logger;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
@ -46,7 +46,7 @@ import net.gleamynode.netty.logging.Logger;
*
* @version $Rev$, $Date$
*
* @apiviz.uses net.gleamynode.netty.channel.ChannelFactory
* @apiviz.uses org.jboss.netty.channel.ChannelFactory
*/
public class Bootstrap {

View File

@ -20,24 +20,24 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.bootstrap;
package org.jboss.netty.bootstrap;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.net.SocketAddress;
import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelHandlerContext;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelPipelineCoverage;
import net.gleamynode.netty.channel.ChannelPipelineException;
import net.gleamynode.netty.channel.ChannelStateEvent;
import net.gleamynode.netty.channel.ExceptionEvent;
import net.gleamynode.netty.channel.SimpleChannelHandler;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelPipelineCoverage;
import org.jboss.netty.channel.ChannelPipelineException;
import org.jboss.netty.channel.ChannelStateEvent;
import org.jboss.netty.channel.ExceptionEvent;
import org.jboss.netty.channel.SimpleChannelHandler;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.bootstrap;
package org.jboss.netty.bootstrap;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.net.SocketAddress;
import java.util.HashMap;
@ -32,18 +32,18 @@ import java.util.concurrent.BlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelHandler;
import net.gleamynode.netty.channel.ChannelHandlerContext;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelPipelineCoverage;
import net.gleamynode.netty.channel.ChannelStateEvent;
import net.gleamynode.netty.channel.ChildChannelStateEvent;
import net.gleamynode.netty.channel.ExceptionEvent;
import net.gleamynode.netty.channel.SimpleChannelHandler;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelHandler;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelPipelineCoverage;
import org.jboss.netty.channel.ChannelStateEvent;
import org.jboss.netty.channel.ChildChannelStateEvent;
import org.jboss.netty.channel.ExceptionEvent;
import org.jboss.netty.channel.SimpleChannelHandler;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)

View File

@ -27,4 +27,4 @@
*
* @apiviz.landmark
*/
package net.gleamynode.netty.bootstrap;
package org.jboss.netty.bootstrap;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.IOException;
import java.io.InputStream;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.nio.ByteOrder;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.EOFException;
import java.io.IOException;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.IOException;
import java.io.InputStream;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
/**
@ -29,7 +29,7 @@ package net.gleamynode.netty.buffer;
*
* @version $Rev$, $Date$
*
* @apiviz.uses net.gleamynode.netty.buffer.ChannelBuffer
* @apiviz.uses org.jboss.netty.buffer.ChannelBuffer
*/
public interface ChannelBufferIndexFinder {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.DataInput;
import java.io.DataInputStream;
@ -36,7 +36,7 @@ import java.io.InputStream;
* @version $Rev$, $Date$
*
* @see ChannelBufferOutputStream
* @apiviz.uses net.gleamynode.netty.buffer.ChannelBuffer
* @apiviz.uses org.jboss.netty.buffer.ChannelBuffer
*/
public class ChannelBufferInputStream extends InputStream implements DataInput {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.DataOutput;
import java.io.DataOutputStream;
@ -35,7 +35,7 @@ import java.io.OutputStream;
* @version $Rev$, $Date$
*
* @see ChannelBufferInputStream
* @apiviz.uses net.gleamynode.netty.buffer.ChannelBuffer
* @apiviz.uses org.jboss.netty.buffer.ChannelBuffer
*/
public class ChannelBufferOutputStream extends OutputStream implements DataOutput {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
@ -34,7 +34,7 @@ import java.nio.ByteOrder;
* This classes is intended to be used with Java 5 static import statement:
*
* <pre>
* import static net.gleamynode.netty.buffer.ChannelBuffers.*;
* import static org.jboss.netty.buffer.ChannelBuffers.*;
*
* ChannelBuffer heapBuffer = buffer(128);
* ChannelBuffer directBuffer = directBuffer(256);
@ -85,7 +85,7 @@ import java.nio.ByteOrder;
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.has net.gleamynode.netty.buffer.ChannelBuffer oneway - - creates
* @apiviz.has org.jboss.netty.buffer.ChannelBuffer oneway - - creates
*/
public class ChannelBuffers {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.IOException;
import java.io.InputStream;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.IOException;
import java.io.InputStream;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.IOException;
import java.io.InputStream;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.EOFException;
import java.io.IOException;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.nio.ByteOrder;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.IOException;
import java.io.InputStream;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.IOException;
import java.io.InputStream;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
import java.io.IOException;
import java.io.InputStream;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)

View File

@ -28,4 +28,4 @@
* @apiviz.landmark
* @apiviz.exclude ^java\.io\.[^\.]+Stream$
*/
package net.gleamynode.netty.buffer;
package org.jboss.netty.buffer;

View File

@ -20,13 +20,13 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.net.SocketAddress;
import java.util.UUID;
import java.util.concurrent.atomic.AtomicBoolean;
import net.gleamynode.netty.util.TimeBasedUuidGenerator;
import org.jboss.netty.util.TimeBasedUuidGenerator;
/**
*

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
/**
*

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.net.SocketAddress;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.net.SocketAddress;
import java.util.UUID;
@ -34,8 +34,8 @@ import java.util.UUID;
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.composedOf net.gleamynode.netty.channel.ChannelConfig
* @apiviz.composedOf net.gleamynode.netty.channel.ChannelPipeline
* @apiviz.composedOf org.jboss.netty.channel.ChannelConfig
* @apiviz.composedOf org.jboss.netty.channel.ChannelPipeline
*/
public interface Channel {
static int OP_NONE = 0;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.util.Map;
@ -32,7 +32,7 @@ import java.util.Map;
*
* @version $Rev$, $Date$
*
* @apiviz.has net.gleamynode.netty.channel.ChannelPipelineFactory
* @apiviz.has org.jboss.netty.channel.ChannelPipelineFactory
*/
public interface ChannelConfig {
void setOptions(Map<String, Object> options);

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
*
@ -30,7 +30,7 @@ package net.gleamynode.netty.channel;
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.composedOf net.gleamynode.netty.channel.ChannelFuture
* @apiviz.composedOf org.jboss.netty.channel.ChannelFuture
*/
public interface ChannelEvent {
Channel getChannel();

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
*

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
@ -31,7 +31,7 @@ package net.gleamynode.netty.channel;
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.has net.gleamynode.netty.channel.Channel oneway - - creates
* @apiviz.has org.jboss.netty.channel.Channel oneway - - creates
*/
public interface ChannelFactory {
Channel newChannel(ChannelPipeline pipeline);

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.util.concurrent.TimeUnit;
@ -32,7 +32,7 @@ import java.util.concurrent.TimeUnit;
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.owns net.gleamynode.netty.channel.ChannelFutureListener - - notifies
* @apiviz.owns org.jboss.netty.channel.ChannelFutureListener - - notifies
*/
public interface ChannelFuture {
Channel getChannel();

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.util.EventListener;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
*

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
@ -30,7 +30,7 @@ package net.gleamynode.netty.channel;
*
* @version $Rev$, $Date$
*
* @apiviz.owns net.gleamynode.netty.channel.ChannelHandler
* @apiviz.owns org.jboss.netty.channel.ChannelHandler
*/
public interface ChannelHandlerContext {
ChannelPipeline getPipeline();

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.util.Map;
@ -33,9 +33,9 @@ import java.util.Map;
* @version $Rev$, $Date$
*
* @apiviz.landmark
* @apiviz.composedOf net.gleamynode.netty.channel.ChannelHandlerContext
* @apiviz.owns net.gleamynode.netty.channel.ChannelHandler
* @apiviz.uses net.gleamynode.netty.channel.ChannelSink - - sends events downstream
* @apiviz.composedOf org.jboss.netty.channel.ChannelHandlerContext
* @apiviz.owns org.jboss.netty.channel.ChannelHandler
* @apiviz.uses org.jboss.netty.channel.ChannelSink - - sends events downstream
*/
public interface ChannelPipeline {
void addFirst (String name, ChannelHandler handler);

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
*

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
*
@ -29,7 +29,7 @@ package net.gleamynode.netty.channel;
*
* @version $Rev$, $Date$
*
* @apiviz.has net.gleamynode.netty.channel.ChannelPipeline oneway - - creates
* @apiviz.has org.jboss.netty.channel.ChannelPipeline oneway - - creates
*/
public interface ChannelPipelineFactory {
ChannelPipeline getPipeline() throws Exception;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
@ -30,7 +30,7 @@ package net.gleamynode.netty.channel;
*
* @version $Rev$, $Date$
*
* @apiviz.uses net.gleamynode.netty.channel.ChannelPipeline - - sends events upstream
* @apiviz.uses org.jboss.netty.channel.ChannelPipeline - - sends events upstream
*/
public interface ChannelSink {
void eventSunk(ChannelPipeline pipeline, ChannelEvent e) throws Exception;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
*

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
@ -30,7 +30,7 @@ package net.gleamynode.netty.channel;
*
* @version $Rev$, $Date$
*
* @apiviz.has net.gleamynode.netty.channel.ChannelState
* @apiviz.has org.jboss.netty.channel.ChannelState
*/
public interface ChannelStateEvent extends ChannelEvent {
ChannelState getState();

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.net.SocketAddress;
import java.util.Map;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
*

View File

@ -20,11 +20,11 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.util.concurrent.TimeUnit;
import net.gleamynode.netty.logging.Logger;
import org.jboss.netty.logging.Logger;
public abstract class CompleteChannelFuture implements ChannelFuture {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
public class DefaultChannelEvent implements ChannelEvent {

View File

@ -20,13 +20,13 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.TimeUnit;
import net.gleamynode.netty.logging.Logger;
import org.jboss.netty.logging.Logger;
public class DefaultChannelFuture implements ChannelFuture {

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import static net.gleamynode.netty.channel.ChannelPipelineCoverage.*;
import static org.jboss.netty.channel.ChannelPipelineCoverage.*;
import java.lang.annotation.AnnotationFormatError;
import java.util.HashMap;
@ -30,7 +30,7 @@ import java.util.LinkedHashMap;
import java.util.Map;
import java.util.NoSuchElementException;
import net.gleamynode.netty.logging.Logger;
import org.jboss.netty.logging.Logger;
public class DefaultChannelPipeline implements ChannelPipeline {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
public class DefaultChannelStateEvent extends DefaultChannelEvent implements
ChannelStateEvent {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
public class DefaultChildChannelStateEvent extends DefaultChannelEvent implements
ChildChannelStateEvent {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
public class DefaultExceptionEvent extends DefaultChannelEvent implements

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.net.SocketAddress;

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
/**
*

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
public class FailedChannelFuture extends CompleteChannelFuture {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import java.net.SocketAddress;

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
import net.gleamynode.netty.logging.Logger;
import org.jboss.netty.logging.Logger;
/**

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;
public class SucceededChannelFuture extends CompleteChannelFuture {

View File

@ -34,4 +34,4 @@
* @apiviz.exclude \.[A-Za-z]+ChannelFuture$
* @apiviz.exclude \.ChannelState$
*/
package net.gleamynode.netty.channel;
package org.jboss.netty.channel;

View File

@ -20,10 +20,10 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelPipeline;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
@ -31,7 +31,7 @@ import net.gleamynode.netty.channel.ChannelPipeline;
*
* @version $Rev$, $Date$
*
* @apiviz.has net.gleamynode.netty.channel.socket.SocketChannel oneway - - creates
* @apiviz.has org.jboss.netty.channel.socket.SocketChannel oneway - - creates
*/
public interface ClientSocketChannelFactory extends ChannelFactory {
SocketChannel newChannel(ChannelPipeline pipeline);

View File

@ -20,16 +20,16 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;
import java.net.ServerSocket;
import java.net.SocketException;
import java.util.Map;
import java.util.Map.Entry;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelPipelineFactory;
import net.gleamynode.netty.util.ConvertUtil;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelPipelineFactory;
import org.jboss.netty.util.ConvertUtil;
public class DefaultServerSocketChannelConfig implements ServerSocketChannelConfig {

View File

@ -20,16 +20,16 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;
import java.net.Socket;
import java.net.SocketException;
import java.util.Map;
import java.util.Map.Entry;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelPipelineFactory;
import net.gleamynode.netty.util.ConvertUtil;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelPipelineFactory;
import org.jboss.netty.util.ConvertUtil;
public class DefaultSocketChannelConfig implements SocketChannelConfig {

View File

@ -20,11 +20,11 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;
import java.net.InetSocketAddress;
import net.gleamynode.netty.channel.Channel;
import org.jboss.netty.channel.Channel;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
@ -32,7 +32,7 @@ import net.gleamynode.netty.channel.Channel;
*
* @version $Rev$, $Date$
*
* @apiviz.composedOf net.gleamynode.netty.channel.socket.ServerSocketChannelConfig
* @apiviz.composedOf org.jboss.netty.channel.socket.ServerSocketChannelConfig
*/
public interface ServerSocketChannel extends Channel {
ServerSocketChannelConfig getConfig();

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;
import net.gleamynode.netty.channel.ChannelConfig;
import org.jboss.netty.channel.ChannelConfig;
public interface ServerSocketChannelConfig extends ChannelConfig {
int getBacklog();

View File

@ -20,10 +20,10 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelPipeline;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
@ -31,7 +31,7 @@ import net.gleamynode.netty.channel.ChannelPipeline;
*
* @version $Rev$, $Date$
*
* @apiviz.has net.gleamynode.netty.channel.socket.ServerSocketChannel oneway - - creates
* @apiviz.has org.jboss.netty.channel.socket.ServerSocketChannel oneway - - creates
*/
public interface ServerSocketChannelFactory extends ChannelFactory {
ServerSocketChannel newChannel(ChannelPipeline pipeline);

View File

@ -20,11 +20,11 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;
import java.net.InetSocketAddress;
import net.gleamynode.netty.channel.Channel;
import org.jboss.netty.channel.Channel;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
@ -32,7 +32,7 @@ import net.gleamynode.netty.channel.Channel;
*
* @version $Rev$, $Date$
*
* @apiviz.composedOf net.gleamynode.netty.channel.socket.SocketChannelConfig
* @apiviz.composedOf org.jboss.netty.channel.socket.SocketChannelConfig
*/
public interface SocketChannel extends Channel {
SocketChannelConfig getConfig();

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;
import net.gleamynode.netty.channel.ChannelConfig;
import org.jboss.netty.channel.ChannelConfig;
public interface SocketChannelConfig extends ChannelConfig {
boolean isTcpNoDelay();

View File

@ -20,12 +20,12 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import java.net.Socket;
import net.gleamynode.netty.channel.socket.DefaultSocketChannelConfig;
import net.gleamynode.netty.util.ConvertUtil;
import org.jboss.netty.channel.socket.DefaultSocketChannelConfig;
import org.jboss.netty.util.ConvertUtil;
class DefaultNioSocketChannelConfig extends DefaultSocketChannelConfig
implements NioSocketChannelConfig {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
public class DefaultReceiveBufferSizePredictor implements
ReceiveBufferSizePredictor {

View File

@ -20,16 +20,16 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import java.io.IOException;
import java.nio.channels.SocketChannel;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
class NioAcceptedSocketChannel extends NioSocketChannel {

View File

@ -20,19 +20,19 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.nio.channels.SocketChannel;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import net.gleamynode.netty.logging.Logger;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
import org.jboss.netty.logging.Logger;
class NioClientSocketChannel extends NioSocketChannel {

View File

@ -20,14 +20,14 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import java.util.concurrent.Executor;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import net.gleamynode.netty.channel.socket.ClientSocketChannelFactory;
import net.gleamynode.netty.channel.socket.SocketChannel;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
import org.jboss.netty.channel.socket.ClientSocketChannelFactory;
import org.jboss.netty.channel.socket.SocketChannel;
public class NioClientSocketChannelFactory implements ClientSocketChannelFactory {

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.net.SocketAddress;
@ -35,17 +35,17 @@ import java.util.concurrent.Executor;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import net.gleamynode.netty.channel.AbstractChannelSink;
import net.gleamynode.netty.channel.ChannelEvent;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelFutureListener;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelState;
import net.gleamynode.netty.channel.ChannelStateEvent;
import net.gleamynode.netty.channel.MessageEvent;
import net.gleamynode.netty.logging.Logger;
import net.gleamynode.netty.util.NamePreservingRunnable;
import org.jboss.netty.channel.AbstractChannelSink;
import org.jboss.netty.channel.ChannelEvent;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelFutureListener;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelState;
import org.jboss.netty.channel.ChannelStateEvent;
import org.jboss.netty.channel.MessageEvent;
import org.jboss.netty.logging.Logger;
import org.jboss.netty.util.NamePreservingRunnable;
class NioClientSocketPipelineSink extends AbstractChannelSink {

View File

@ -20,26 +20,26 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.channels.ServerSocketChannel;
import net.gleamynode.netty.channel.AbstractServerChannel;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import net.gleamynode.netty.channel.socket.DefaultServerSocketChannelConfig;
import net.gleamynode.netty.channel.socket.ServerSocketChannelConfig;
import net.gleamynode.netty.logging.Logger;
import org.jboss.netty.channel.AbstractServerChannel;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
import org.jboss.netty.channel.socket.DefaultServerSocketChannelConfig;
import org.jboss.netty.channel.socket.ServerSocketChannelConfig;
import org.jboss.netty.logging.Logger;
class NioServerSocketChannel extends AbstractServerChannel
implements net.gleamynode.netty.channel.socket.ServerSocketChannel {
implements org.jboss.netty.channel.socket.ServerSocketChannel {
private static final Logger logger =
Logger.getLogger(NioServerSocketChannel.class);

View File

@ -20,14 +20,14 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import java.util.concurrent.Executor;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import net.gleamynode.netty.channel.socket.ServerSocketChannel;
import net.gleamynode.netty.channel.socket.ServerSocketChannelFactory;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
import org.jboss.netty.channel.socket.ServerSocketChannel;
import org.jboss.netty.channel.socket.ServerSocketChannelFactory;
public class NioServerSocketChannelFactory implements ServerSocketChannelFactory {

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.net.SocketAddress;
@ -32,16 +32,16 @@ import java.nio.channels.SocketChannel;
import java.util.concurrent.Executor;
import java.util.concurrent.atomic.AtomicInteger;
import net.gleamynode.netty.channel.AbstractChannelSink;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelEvent;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelState;
import net.gleamynode.netty.channel.ChannelStateEvent;
import net.gleamynode.netty.channel.MessageEvent;
import net.gleamynode.netty.logging.Logger;
import net.gleamynode.netty.util.NamePreservingRunnable;
import org.jboss.netty.channel.AbstractChannelSink;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelEvent;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelState;
import org.jboss.netty.channel.ChannelStateEvent;
import org.jboss.netty.channel.MessageEvent;
import org.jboss.netty.logging.Logger;
import org.jboss.netty.util.NamePreservingRunnable;
class NioServerSocketPipelineSink extends AbstractChannelSink {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
@ -28,13 +28,13 @@ import java.nio.channels.SocketChannel;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import net.gleamynode.netty.channel.AbstractChannel;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import net.gleamynode.netty.channel.MessageEvent;
import org.jboss.netty.channel.AbstractChannel;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
import org.jboss.netty.channel.MessageEvent;
/**
* @author The Netty Project (netty-dev@lists.jboss.org)
@ -44,7 +44,7 @@ import net.gleamynode.netty.channel.MessageEvent;
*
*/
abstract class NioSocketChannel extends AbstractChannel
implements net.gleamynode.netty.channel.socket.SocketChannel {
implements org.jboss.netty.channel.socket.SocketChannel {
final SocketChannel socket;
private final NioSocketChannelConfig config;

View File

@ -20,12 +20,12 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import java.nio.ByteBuffer;
import java.nio.channels.WritableByteChannel;
import net.gleamynode.netty.channel.socket.SocketChannelConfig;
import org.jboss.netty.channel.socket.SocketChannelConfig;
/**
*
@ -34,7 +34,7 @@ import net.gleamynode.netty.channel.socket.SocketChannelConfig;
*
* @version $Rev$, $Date$
*
* @apiviz.has net.gleamynode.netty.channel.socket.nio.ReceiveBufferSizePredictor
* @apiviz.has org.jboss.netty.channel.socket.nio.ReceiveBufferSizePredictor
*/
public interface NioSocketChannelConfig extends SocketChannelConfig {

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.nio.ByteBuffer;
@ -35,13 +35,13 @@ import java.util.Set;
import java.util.concurrent.Executor;
import java.util.concurrent.atomic.AtomicBoolean;
import net.gleamynode.netty.buffer.ChannelBuffer;
import net.gleamynode.netty.buffer.ChannelBuffers;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.logging.Logger;
import net.gleamynode.netty.util.NamePreservingRunnable;
import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.buffer.ChannelBuffers;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.logging.Logger;
import org.jboss.netty.util.NamePreservingRunnable;
class NioWorker implements Runnable {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;
public interface ReceiveBufferSizePredictor {
int nextReceiveBufferSize();

View File

@ -25,4 +25,4 @@
* <a href="http://en.wikipedia.org/wiki/New_I/O">NIO</a>-based socket channel
* API implementation - recommended for large number of connections (&gt; 1000).
*/
package net.gleamynode.netty.channel.socket.nio;
package org.jboss.netty.channel.socket.nio;

View File

@ -20,20 +20,20 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PushbackInputStream;
import java.net.Socket;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
class OioAcceptedSocketChannel extends OioSocketChannel {

View File

@ -20,17 +20,17 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.OutputStream;
import java.io.PushbackInputStream;
import java.net.Socket;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
class OioClientSocketChannel extends OioSocketChannel {

View File

@ -20,13 +20,13 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import java.util.concurrent.Executor;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.socket.ClientSocketChannelFactory;
import net.gleamynode.netty.channel.socket.SocketChannel;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.socket.ClientSocketChannelFactory;
import org.jboss.netty.channel.socket.SocketChannel;
public class OioClientSocketChannelFactory implements ClientSocketChannelFactory {

View File

@ -20,23 +20,23 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.PushbackInputStream;
import java.net.SocketAddress;
import java.util.concurrent.Executor;
import net.gleamynode.netty.channel.AbstractChannelSink;
import net.gleamynode.netty.channel.ChannelEvent;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelFutureListener;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelState;
import net.gleamynode.netty.channel.ChannelStateEvent;
import net.gleamynode.netty.channel.MessageEvent;
import net.gleamynode.netty.util.NamePreservingRunnable;
import org.jboss.netty.channel.AbstractChannelSink;
import org.jboss.netty.channel.ChannelEvent;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelFutureListener;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelState;
import org.jboss.netty.channel.ChannelStateEvent;
import org.jboss.netty.channel.MessageEvent;
import org.jboss.netty.util.NamePreservingRunnable;
class OioClientSocketPipelineSink extends AbstractChannelSink {

View File

@ -20,24 +20,24 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.ServerSocket;
import net.gleamynode.netty.channel.AbstractServerChannel;
import net.gleamynode.netty.channel.ChannelException;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import net.gleamynode.netty.channel.socket.DefaultServerSocketChannelConfig;
import net.gleamynode.netty.channel.socket.ServerSocketChannel;
import net.gleamynode.netty.channel.socket.ServerSocketChannelConfig;
import net.gleamynode.netty.logging.Logger;
import org.jboss.netty.channel.AbstractServerChannel;
import org.jboss.netty.channel.ChannelException;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
import org.jboss.netty.channel.socket.DefaultServerSocketChannelConfig;
import org.jboss.netty.channel.socket.ServerSocketChannel;
import org.jboss.netty.channel.socket.ServerSocketChannelConfig;
import org.jboss.netty.logging.Logger;
class OioServerSocketChannel extends AbstractServerChannel
implements ServerSocketChannel {

View File

@ -20,14 +20,14 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import java.util.concurrent.Executor;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import net.gleamynode.netty.channel.socket.ServerSocketChannel;
import net.gleamynode.netty.channel.socket.ServerSocketChannelFactory;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
import org.jboss.netty.channel.socket.ServerSocketChannel;
import org.jboss.netty.channel.socket.ServerSocketChannelFactory;
public class OioServerSocketChannelFactory implements ServerSocketChannelFactory {

View File

@ -20,9 +20,9 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.IOException;
import java.net.Socket;
@ -30,16 +30,16 @@ import java.net.SocketAddress;
import java.net.SocketTimeoutException;
import java.util.concurrent.Executor;
import net.gleamynode.netty.channel.AbstractChannelSink;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelEvent;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelState;
import net.gleamynode.netty.channel.ChannelStateEvent;
import net.gleamynode.netty.channel.MessageEvent;
import net.gleamynode.netty.logging.Logger;
import net.gleamynode.netty.util.NamePreservingRunnable;
import org.jboss.netty.channel.AbstractChannelSink;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelEvent;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelState;
import org.jboss.netty.channel.ChannelStateEvent;
import org.jboss.netty.channel.MessageEvent;
import org.jboss.netty.logging.Logger;
import org.jboss.netty.util.NamePreservingRunnable;
class OioServerSocketPipelineSink extends AbstractChannelSink {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import java.io.OutputStream;
import java.io.PushbackInputStream;
@ -28,15 +28,15 @@ import java.net.InetSocketAddress;
import java.net.Socket;
import java.net.SocketAddress;
import net.gleamynode.netty.channel.AbstractChannel;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.ChannelFuture;
import net.gleamynode.netty.channel.ChannelPipeline;
import net.gleamynode.netty.channel.ChannelSink;
import net.gleamynode.netty.channel.socket.DefaultSocketChannelConfig;
import net.gleamynode.netty.channel.socket.SocketChannel;
import net.gleamynode.netty.channel.socket.SocketChannelConfig;
import org.jboss.netty.channel.AbstractChannel;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelPipeline;
import org.jboss.netty.channel.ChannelSink;
import org.jboss.netty.channel.socket.DefaultSocketChannelConfig;
import org.jboss.netty.channel.socket.SocketChannel;
import org.jboss.netty.channel.socket.SocketChannelConfig;
abstract class OioSocketChannel extends AbstractChannel
implements SocketChannel {

View File

@ -20,17 +20,17 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;
import static net.gleamynode.netty.channel.Channels.*;
import static org.jboss.netty.channel.Channels.*;
import java.io.OutputStream;
import java.io.PushbackInputStream;
import net.gleamynode.netty.buffer.ChannelBuffer;
import net.gleamynode.netty.buffer.ChannelBuffers;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelFuture;
import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.buffer.ChannelBuffers;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelFuture;
class OioWorker implements Runnable {

View File

@ -25,4 +25,4 @@
* Old blocking I/O based socket channel API implementation - recommended for
* small number of connections (&lt; 1000).
*/
package net.gleamynode.netty.channel.socket.oio;
package org.jboss.netty.channel.socket.oio;

View File

@ -24,4 +24,4 @@
/**
* Abstract TCP and UDP socket interfaces which extend the core channel API.
*/
package net.gleamynode.netty.channel.socket;
package org.jboss.netty.channel.socket;

View File

@ -20,14 +20,14 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.example.discard;
package org.jboss.netty.example.discard;
import java.net.InetSocketAddress;
import java.util.concurrent.Executors;
import net.gleamynode.netty.bootstrap.ClientBootstrap;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.socket.nio.NioClientSocketChannelFactory;
import org.jboss.netty.bootstrap.ClientBootstrap;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory;
public class DiscardClient {

View File

@ -20,23 +20,23 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.example.discard;
package org.jboss.netty.example.discard;
import java.util.Random;
import java.util.concurrent.atomic.AtomicLong;
import java.util.logging.Level;
import java.util.logging.Logger;
import net.gleamynode.netty.buffer.ChannelBuffer;
import net.gleamynode.netty.buffer.ChannelBuffers;
import net.gleamynode.netty.channel.Channel;
import net.gleamynode.netty.channel.ChannelEvent;
import net.gleamynode.netty.channel.ChannelHandlerContext;
import net.gleamynode.netty.channel.ChannelPipelineCoverage;
import net.gleamynode.netty.channel.ChannelStateEvent;
import net.gleamynode.netty.channel.ExceptionEvent;
import net.gleamynode.netty.channel.MessageEvent;
import net.gleamynode.netty.channel.SimpleChannelHandler;
import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.buffer.ChannelBuffers;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelEvent;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.jboss.netty.channel.ChannelPipelineCoverage;
import org.jboss.netty.channel.ChannelStateEvent;
import org.jboss.netty.channel.ExceptionEvent;
import org.jboss.netty.channel.MessageEvent;
import org.jboss.netty.channel.SimpleChannelHandler;
@ChannelPipelineCoverage("all")
public class DiscardHandler extends SimpleChannelHandler {

View File

@ -20,14 +20,14 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.example.discard;
package org.jboss.netty.example.discard;
import java.net.InetSocketAddress;
import java.util.concurrent.Executors;
import net.gleamynode.netty.bootstrap.ServerBootstrap;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.socket.nio.NioServerSocketChannelFactory;
import org.jboss.netty.bootstrap.ServerBootstrap;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
public class DiscardServer {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.example.discard;
package org.jboss.netty.example.discard;
public class ThroughputMonitor extends Thread {

View File

@ -20,14 +20,14 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.example.echo;
package org.jboss.netty.example.echo;
import java.net.InetSocketAddress;
import java.util.concurrent.Executors;
import net.gleamynode.netty.bootstrap.ClientBootstrap;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.socket.nio.NioClientSocketChannelFactory;
import org.jboss.netty.bootstrap.ClientBootstrap;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.socket.nio.NioClientSocketChannelFactory;
public class EchoClient {

View File

@ -20,21 +20,21 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.example.echo;
package org.jboss.netty.example.echo;
import java.util.concurrent.atomic.AtomicLong;
import java.util.logging.Level;
import java.util.logging.Logger;
import net.gleamynode.netty.buffer.ChannelBuffer;
import net.gleamynode.netty.buffer.ChannelBuffers;
import net.gleamynode.netty.channel.ChannelEvent;
import net.gleamynode.netty.channel.ChannelHandlerContext;
import net.gleamynode.netty.channel.ChannelPipelineCoverage;
import net.gleamynode.netty.channel.ChannelStateEvent;
import net.gleamynode.netty.channel.ExceptionEvent;
import net.gleamynode.netty.channel.MessageEvent;
import net.gleamynode.netty.channel.SimpleChannelHandler;
import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.buffer.ChannelBuffers;
import org.jboss.netty.channel.ChannelEvent;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.jboss.netty.channel.ChannelPipelineCoverage;
import org.jboss.netty.channel.ChannelStateEvent;
import org.jboss.netty.channel.ExceptionEvent;
import org.jboss.netty.channel.MessageEvent;
import org.jboss.netty.channel.SimpleChannelHandler;
@ChannelPipelineCoverage("all")
public class EchoHandler extends SimpleChannelHandler {

View File

@ -20,14 +20,14 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.example.echo;
package org.jboss.netty.example.echo;
import java.net.InetSocketAddress;
import java.util.concurrent.Executors;
import net.gleamynode.netty.bootstrap.ServerBootstrap;
import net.gleamynode.netty.channel.ChannelFactory;
import net.gleamynode.netty.channel.socket.nio.NioServerSocketChannelFactory;
import org.jboss.netty.bootstrap.ServerBootstrap;
import org.jboss.netty.channel.ChannelFactory;
import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory;
public class EchoServer {

View File

@ -20,7 +20,7 @@
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package net.gleamynode.netty.example.echo;
package org.jboss.netty.example.echo;
public class ThroughputMonitor extends Thread {

Some files were not shown because too many files have changed in this diff Show More