mirror of
https://github.com/opensim/opensim.git
synced 2026-06-03 00:46:33 +08:00
12 lines
202 B
C#
12 lines
202 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace OpenSim.Region.Framework.Interfaces
|
|
{
|
|
public interface IServiceThrottleModule
|
|
{
|
|
void Enqueue(Action continuation);
|
|
}
|
|
|
|
}
|