diff --git a/OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs b/OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs new file mode 100644 index 0000000000..bb6a8b4ffa --- /dev/null +++ b/OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; + +namespace OpenSim.Region.Framework.Interfaces +{ + public interface IServiceThrottleModule + { + void Enqueue(Action continuation); + } + +}