Skip to content

Commit

Permalink
Rname StreamOioByteChannel to OioByteStreamChannel
Browse files Browse the repository at this point in the history
  • Loading branch information
Norman Maurer committed Jan 21, 2013
1 parent 7316a3c commit 4192222
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import gnu.io.CommPort;
import gnu.io.CommPortIdentifier;
import gnu.io.SerialPort;
import io.netty.channel.socket.oio.StreamOioByteChannel;
import io.netty.channel.socket.oio.OioByteStreamChannel;

import java.net.SocketAddress;

Expand All @@ -27,7 +27,7 @@
/**
* A channel to a serial device using the RXTX library.
*/
public class RxtxChannel extends StreamOioByteChannel {
public class RxtxChannel extends OioByteStreamChannel {

private static final RxtxDeviceAddress LOCAL_ADDRESS = new RxtxDeviceAddress("localhost");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* Abstract base class for OIO Channels that are based on streams.
*/
public abstract class StreamOioByteChannel extends AbstractOioByteChannel {
public abstract class OioByteStreamChannel extends AbstractOioByteChannel {

private InputStream is;
private OutputStream os;
Expand All @@ -43,7 +43,7 @@ public abstract class StreamOioByteChannel extends AbstractOioByteChannel {
* {@link} has no parent as it was created by your self.
* @param id the id which should be used for this instance or {@code null} if a new one should be generated
*/
protected StreamOioByteChannel(Channel parent, Integer id) {
protected OioByteStreamChannel(Channel parent, Integer id) {
super(parent, id);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
/**
* A {@link SocketChannel} which is using Old-Blocking-IO
*/
public class OioSocketChannel extends StreamOioByteChannel
public class OioSocketChannel extends OioByteStreamChannel
implements SocketChannel {

private static final InternalLogger logger =
Expand Down

0 comments on commit 4192222

Please sign in to comment.