summaryrefslogtreecommitdiff
path: root/DAnCE/tools/System_Health/Daemon/SHS_Daemon.idl
blob: c78746b093e90d67e4321f3a991ba533fd8f0fc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef System_Health_Daemon
#define System_Health_Daemon

#include "System_Health/SHS_DataModel.idl"

module DAnCE
{
  module SHS
  {
    /**
     * simple interface to receive system health updates.
     */
    interface SHS_Daemon
    {
      void update (in Status_Update update);
      oneway void shutdown ();
    };
  };
};

#endif // System_Health_Daemon