Searched defs:cio (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/sample/nio/server/
H A DSendable.java58 boolean send(ChannelIO cio) throws IOException; argument
H A DRequestServicer.java53 private ChannelIO cio; field in class:RequestServicer
57 RequestServicer(ChannelIO cio) { argument
58 this.cio = cio;
84 do {} while (rp.send(cio)); // Send
85 do {} while (!cio.shutdown());
86 cio.close();
102 cio.shutdown();
107 cio.close();
124 do {} while (!cio
[all...]
H A DFileContent.java95 public boolean send(ChannelIO cio) throws IOException { argument
108 position += cio.transferTo(fc, position, length - position);
H A DRequestHandler.java54 private ChannelIO cio; field in class:RequestHandler
63 RequestHandler(ChannelIO cio) { argument
64 this.cio = cio;
88 if (!cio.doHandshake(sk)) {
92 if ((cio.read() < 0) || Request.isComplete(cio.getReadBuf())) {
93 rbb = cio.getReadBuf();
147 if (cio.shutdown()) {
148 cio
[all...]
H A DStringContent.java97 public boolean send(ChannelIO cio) throws IOException { argument
100 cio.write(bb);
H A DReply.java115 public boolean send(ChannelIO cio) throws IOException { argument
121 if (cio.write(hbb) <= 0)
126 if (content.send(cio))
130 if (!cio.dataFlush())

Completed in 377 milliseconds