blob: bb6a8b4ffa99ba54da83d4c5b43e5f67068b6c46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
using System.Collections.Generic;
namespace OpenSim.Region.Framework.Interfaces
{
public interface IServiceThrottleModule
{
void Enqueue(Action continuation);
}
}
|