Added IServiceThrottleModule.cs

This commit is contained in:
Diva Canto
2013-07-16 17:06:54 -07:00
parent 99a600753e
commit a006caabbc

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
namespace OpenSim.Region.Framework.Interfaces
{
public interface IServiceThrottleModule
{
void Enqueue(Action continuation);
}
}