Fix authors

This commit is contained in:
Norman Maurer 2011-10-23 19:33:30 +02:00
parent 0fbe65b076
commit a2f4404545
3 changed files with 6 additions and 3 deletions

View File

@ -11,7 +11,8 @@ import org.jboss.netty.buffer.ChannelBuffers;
* objects to and read them
*
*
* @author Norman Maurer
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://www.murkycloud.com/">Norman Maurer</a>
*/
public class BlockingChannelBufferInputStream extends InputStream{
private final Object mutex = new Object();

View File

@ -11,7 +11,8 @@ import org.jboss.netty.channel.ChannelFuture;
/**
* {@link OutputStream} which write data to the wrapped {@link Channel}
*
* @author Norman Maurer
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://www.murkycloud.com/">Norman Maurer</a>
*/
public class ChannelOutputStream extends OutputStream{

View File

@ -23,7 +23,8 @@ import org.jboss.netty.util.Timer;
* Abstract base class which could be used if you need to use {@link InputStream} and {@link OutputStream} directly in your Handler.
* Because of the blocking nature of {@link InputStream} it will spawn a new Thread on every new connected {@link Channel}
*
* @author Norman Maurer
* @author <a href="http://www.jboss.org/netty/">The Netty Project</a>
* @author <a href="http://www.murkycloud.com/">Norman Maurer</a>
*/
public abstract class StreamHandler extends ReadTimeoutHandler{