01: package vicazh.hyperpool.stream.net.http;
02:
03: import java.io.*;
04:
05: class CacheSession extends Session {
06:
07: CacheSession(Connection connection) {
08: super (connection);
09: }
10:
11: public void setServer(OutputStream outputstream) {
12: setServer(new CacheServerStream(this , outputstream));
13: }
14:
15: public void setClient(OutputStream outputstream) {
16: setClient(new CacheClientStream(this , outputstream));
17: }
18:
19: Session session;
20:
21: }
|