Updated @author tags
This commit is contained in:
parent
3473135c7b
commit
1a309bff34
@ -37,6 +37,7 @@ import org.jboss.netty.util.internal.ConversionUtil;
|
|||||||
*
|
*
|
||||||
* @author The Netty Project (netty-dev@lists.jboss.org)
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
* @author Trustin Lee (tlee@redhat.com)
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
|
* @author Daniel Bevenius (dbevenius@jboss.com)
|
||||||
*
|
*
|
||||||
* @version $Rev$, $Date$
|
* @version $Rev$, $Date$
|
||||||
*
|
*
|
||||||
|
@ -49,10 +49,11 @@ import org.jboss.netty.util.internal.ThreadLocalBoolean;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* NioDatagramChannel provides a connection less NIO UDP channel for Netty.
|
* NioDatagramChannel provides a connection less NIO UDP channel for Netty.
|
||||||
* <p/>
|
|
||||||
*
|
*
|
||||||
* @author The Netty Project (netty-dev@lists.jboss.org)
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
* @author Daniel Bevenius (dbevenius@jboss.com)
|
* @author Daniel Bevenius (dbevenius@jboss.com)
|
||||||
|
*
|
||||||
* @version $Rev$, $Date$
|
* @version $Rev$, $Date$
|
||||||
*/
|
*/
|
||||||
public class NioDatagramChannel extends AbstractChannel implements
|
public class NioDatagramChannel extends AbstractChannel implements
|
||||||
@ -218,7 +219,6 @@ public class NioDatagramChannel extends AbstractChannel implements
|
|||||||
/**
|
/**
|
||||||
* WriteBuffer is an extension of {@link LinkedTransferQueue} that adds
|
* WriteBuffer is an extension of {@link LinkedTransferQueue} that adds
|
||||||
* support for highWaterMark checking of the write buffer size.
|
* support for highWaterMark checking of the write buffer size.
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
private final class WriteBufferQueue extends
|
private final class WriteBufferQueue extends
|
||||||
LinkedTransferQueue<MessageEvent> {
|
LinkedTransferQueue<MessageEvent> {
|
||||||
|
@ -52,6 +52,7 @@ import org.jboss.netty.channel.socket.DatagramChannelConfig;
|
|||||||
*
|
*
|
||||||
* @author The Netty Project (netty-dev@lists.jboss.org)
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
* @author Trustin Lee (tlee@redhat.com)
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
|
* @author Daniel Bevenius (dbevenius@jboss.com)
|
||||||
*
|
*
|
||||||
* @version $Rev$, $Date$
|
* @version $Rev$, $Date$
|
||||||
*/
|
*/
|
||||||
|
@ -54,9 +54,10 @@ import org.jboss.netty.util.internal.ExecutorUtil;
|
|||||||
* more {@link Channel}s in a non-blocking mode.
|
* more {@link Channel}s in a non-blocking mode.
|
||||||
*
|
*
|
||||||
* @author The Netty Project (netty-dev@lists.jboss.org)
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
* @author Daniel Bevenius (dbevenius@jboss.com)
|
* @author Daniel Bevenius (dbevenius@jboss.com)
|
||||||
* @version $Rev$, $Date$
|
|
||||||
*
|
*
|
||||||
|
* @version $Rev$, $Date$
|
||||||
*/
|
*/
|
||||||
public class NioDatagramChannelFactory implements ChannelFactory,
|
public class NioDatagramChannelFactory implements ChannelFactory,
|
||||||
ServerChannelFactory {
|
ServerChannelFactory {
|
||||||
|
@ -42,7 +42,9 @@ import org.jboss.netty.channel.MessageEvent;
|
|||||||
* A {@link NioDatagramPipelineSink} contains an array of {@link NioUdpWorker}s
|
* A {@link NioDatagramPipelineSink} contains an array of {@link NioUdpWorker}s
|
||||||
*
|
*
|
||||||
* @author The Netty Project (netty-dev@lists.jboss.org)
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
* @author Daniel Bevenius (dbevenius@jboss.com)
|
* @author Daniel Bevenius (dbevenius@jboss.com)
|
||||||
|
*
|
||||||
* @version $Rev$, $Date$
|
* @version $Rev$, $Date$
|
||||||
*/
|
*/
|
||||||
public class NioDatagramPipelineSink extends AbstractChannelSink {
|
public class NioDatagramPipelineSink extends AbstractChannelSink {
|
||||||
|
@ -59,7 +59,9 @@ import org.jboss.netty.util.internal.LinkedTransferQueue;
|
|||||||
* also manages the select process.
|
* also manages the select process.
|
||||||
*
|
*
|
||||||
* @author The Netty Project (netty-dev@lists.jboss.org)
|
* @author The Netty Project (netty-dev@lists.jboss.org)
|
||||||
|
* @author Trustin Lee (tlee@redhat.com)
|
||||||
* @author Daniel Bevenius (dbevenius@jboss.com)
|
* @author Daniel Bevenius (dbevenius@jboss.com)
|
||||||
|
*
|
||||||
* @version $Rev$, $Date$
|
* @version $Rev$, $Date$
|
||||||
*/
|
*/
|
||||||
class NioUdpWorker implements Runnable {
|
class NioUdpWorker implements Runnable {
|
||||||
@ -723,9 +725,6 @@ class NioUdpWorker implements Runnable {
|
|||||||
/**
|
/**
|
||||||
* RegisterTask is a task responsible for registering a channel with a
|
* RegisterTask is a task responsible for registering a channel with a
|
||||||
* selector.
|
* selector.
|
||||||
*
|
|
||||||
* @author <a href="mailto:dbevenius@jboss.com">Daniel Bevenius</a>
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
private final class ChannelRegistionTask implements Runnable {
|
private final class ChannelRegistionTask implements Runnable {
|
||||||
private final NioDatagramChannel channel;
|
private final NioDatagramChannel channel;
|
||||||
|
Loading…
Reference in New Issue
Block a user