Mercurial > hg > RemoteEditor > REPSessionManager
changeset 136:a4e2bceb9713
*** empty log message ***
author | pin |
---|---|
date | Wed, 27 Aug 2008 18:41:42 +0900 |
parents | 0bd4ffc33bdb |
children | 1ea856259add |
files | rep/channel/REPSocketChannel.java |
diffstat | 1 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/rep/channel/REPSocketChannel.java Wed Aug 27 18:34:12 2008 +0900 +++ b/rep/channel/REPSocketChannel.java Wed Aug 27 18:41:42 2008 +0900 @@ -1,6 +1,7 @@ package rep.channel; import java.io.IOException; +import java.nio.ByteBuffer; import java.nio.channels.ClosedChannelException; import java.nio.channels.SelectableChannel; import java.nio.channels.SelectionKey; @@ -60,6 +61,21 @@ protected void implCloseChannel() throws IOException { sc.close(); } + + public long read(ByteBuffer header) { + // TODO Auto-generated method stub + return 0; + } + + public void write(ByteBuffer buffer) throws IOException { + // TODO Auto-generated method stub + + } + + public boolean finishConnect() { + // TODO Auto-generated method stub + return false; + }