Adding LinkUp/LinkDown when a region is started or stoped.

Those two events could be used to compute the region availibility
This commit is contained in:
sacha
2010-04-23 10:51:27 -04:00
parent f8d49e0a30
commit 7eda9364fd
2 changed files with 7 additions and 3 deletions

View File

@@ -15,4 +15,9 @@ public interface ISnmpModule
void Major(string Message, Scene scene);
void ColdStart(int step , Scene scene);
void Shutdown(int step , Scene scene);
//
// Node Start/stop events
//
void LinkUp(Scene scene);
void LinkDown(Scene scene);
}