Added IServiceThrottleModule.cs

cpu-performance
Diva Canto 2013-07-16 17:06:54 -07:00
parent 99a600753e
commit a006caabbc
1 changed files with 11 additions and 0 deletions

View File

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