aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs
diff options
context:
space:
mode:
authorDiva Canto2013-07-16 17:06:54 -0700
committerDiva Canto2013-07-16 17:06:54 -0700
commita006caabbcfe6e2a2b4a6118d217d3bd9abd4d99 (patch)
treee2e97d0b1a4cbae5cb1f3fc36ef8f75fb3700dae /OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs
parentChanged the name to ServiceThrottle/ServiceThrottleModule in order to reflect... (diff)
downloadopensim-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/Interfaces/IServiceThrottleModule.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs11
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 @@
1using System;
2using System.Collections.Generic;
3
4namespace OpenSim.Region.Framework.Interfaces
5{
6 public interface IServiceThrottleModule
7 {
8 void Enqueue(Action continuation);
9 }
10
11}