Database
weather.txt
Associated article: Weather Data Distribution & System Monitoring
Tags: Database Open Source
Published source code accompanying the article by Chris McClellen in which he examines how the Weather Channel processes data and transmits it from Weather Channel systems to the satellite.
Weather Data Distribution & System Monitoring
by Chris McClellen
Example 1:
typedef sequence<string> StringList;
exception UnknownNames {
StringList names;
};
interface MonitorTarget {
void getValues(in StringList names, out StringList values)
raises(UnknownNames);
string ping();
long getUpTime();
};
1


