diff options
author | Diva Canto | 2013-07-16 17:06:54 -0700 |
---|---|---|
committer | Diva Canto | 2013-07-16 17:06:54 -0700 |
commit | a006caabbcfe6e2a2b4a6118d217d3bd9abd4d99 (patch) | |
tree | e2e97d0b1a4cbae5cb1f3fc36ef8f75fb3700dae /OpenSim/Region/Framework | |
parent | Changed the name to ServiceThrottle/ServiceThrottleModule in order to reflect... (diff) | |
download | opensim-SC_OLD-a006caabbcfe6e2a2b4a6118d217d3bd9abd4d99.zip opensim-SC_OLD-a006caabbcfe6e2a2b4a6118d217d3bd9abd4d99.tar.gz opensim-SC_OLD-a006caabbcfe6e2a2b4a6118d217d3bd9abd4d99.tar.bz2 opensim-SC_OLD-a006caabbcfe6e2a2b4a6118d217d3bd9abd4d99.tar.xz |
Added IServiceThrottleModule.cs
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs b/OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs new file mode 100644 index 0000000..bb6a8b4 --- /dev/null +++ b/OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs | |||
@@ -0,0 +1,11 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | |||
4 | namespace OpenSim.Region.Framework.Interfaces | ||
5 | { | ||
6 | public interface IServiceThrottleModule | ||
7 | { | ||
8 | void Enqueue(Action continuation); | ||
9 | } | ||
10 | |||
11 | } | ||