OpenSim
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
IServiceThrottleModule.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 
4 namespace OpenSim.Region.Framework.Interfaces
5 {
6  public interface IServiceThrottleModule
7  {
16  void Enqueue(string category, string itemid, Action continuation);
17  }
18 
19 }