RiverRat - An MIT iCampus project | http://web.mit.edu/riverrat/ |
Inheritance diagram for riverrat.LiveServer:
Public Member Functions | |
LiveServer (Race newrace) | |
Constructor. | |
LiveServer (Race newrace, int newport) | |
Constructor. | |
Static Public Member Functions | |
void | main (String args[]) |
Test case. | |
Protected Attributes | |
InputStream | radioInputStream = null |
InputStream to read data from. | |
Race | therace = null |
Race data. |
Definition at line 8 of file LiveServer.java.
|
Constructor. Calls super() to initialize server, and assigns Race.
Definition at line 19 of file LiveServer.java. References riverrat.LiveServer.therace. |
|
Constructor. Calls super(newport) to initalize server, and assigns Race.
Definition at line 29 of file LiveServer.java. References riverrat.LiveServer.therace. |
|
Test case. Opens up a server socket and listens for client connections. On connecting, looks for XML files in the path from which the server was launched and outputs them over the socket, parsing them on the fly and using the ContentHandler callbacks to output the data.
Reimplemented from riverrat.BasicServer. Definition at line 35 of file LiveServer.java. |