diff options
author | Adam Frisby | 2009-11-02 00:20:41 +1100 |
---|---|---|
committer | Adam Frisby | 2009-11-02 00:20:41 +1100 |
commit | 3c0881c83c18489ca1887658adfa8a61c5fdd806 (patch) | |
tree | dcb5eb048b25093a39d89acd9ea0c26f64e94f30 | |
parent | * Implemented some tweaks to monitoring module. (diff) | |
download | opensim-SC_OLD-3c0881c83c18489ca1887658adfa8a61c5fdd806.zip opensim-SC_OLD-3c0881c83c18489ca1887658adfa8a61c5fdd806.tar.gz opensim-SC_OLD-3c0881c83c18489ca1887658adfa8a61c5fdd806.tar.bz2 opensim-SC_OLD-3c0881c83c18489ca1887658adfa8a61c5fdd806.tar.xz |
* Committing missing file from last commit.
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/Monitoring/IAlert.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/Monitoring/IAlert.cs b/OpenSim/Region/CoreModules/Framework/Monitoring/IAlert.cs new file mode 100644 index 0000000..b533df9 --- /dev/null +++ b/OpenSim/Region/CoreModules/Framework/Monitoring/IAlert.cs | |||
@@ -0,0 +1,13 @@ | |||
1 | using System; | ||
2 | |||
3 | namespace OpenSim.Region.CoreModules.Framework.Monitoring | ||
4 | { | ||
5 | internal delegate void Alert(Type reporter, string reason, bool fatal); | ||
6 | |||
7 | interface IAlert | ||
8 | { | ||
9 | string GetName(); | ||
10 | void Test(); | ||
11 | event Alert OnTriggerAlert; | ||
12 | } | ||
13 | } | ||