interface EventLog
{
  void log(in string aHost,     // a host name
           in string aType,     // event type
           in string aSource,   // source name
           in string aMessage); // text message
};

Example 1: Simplified event-logging interface.

Back to Article