Mercurial > hg > RemoteEditor > REPSessionManager
view rep/Editor.java @ 6:bdb91f4cea26
It Can connect SessionManagers each other.
author | pin |
---|---|
date | Fri, 19 Oct 2007 01:26:47 +0900 |
parents | 02fa9a68d9a2 |
children | 2d4bab638a71 |
line wrap: on
line source
package rep; import java.nio.channels.SocketChannel; public class Editor { private int editorNo; private SocketChannel channel; private SocketChannel nextChannel; public Editor(int editorNo, SocketChannel channel){ this.editorNo = editorNo; this.channel = channel; } public SocketChannel getChannel() { return channel; } }