Files
opensim/OpenSim/Region/Framework/Interfaces/IServiceThrottleModule.cs
2013-07-16 17:06:54 -07:00

12 lines
202 B
C#

using System;
using System.Collections.Generic;
namespace OpenSim.Region.Framework.Interfaces
{
public interface IServiceThrottleModule
{
void Enqueue(Action continuation);
}
}