01: package vicazh.hyperpool.stream.net.http;
02:
03: import vicazh.hyperpool.stream.*;
04:
05: class ContentConnection extends ContentSyncConnection {
06:
07: ContentConnection(Element element) {
08: super (element);
09: }
10:
11: protected Session getSession() {
12: return new ContentSession(this );
13: }
14:
15: int index;
16:
17: Priority priority;
18:
19: Connection c;
20: }
|