12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace OpenSim.Framework.Communications.Limit
- {
-
-
-
- public class NullLimitStrategy<TId> : IRequestLimitStrategy<TId>
- {
- public bool AllowRequest(TId id) { return true; }
- public bool IsFirstRefusal(TId id) { return false; }
- public void MonitorRequests(TId id) { }
- public bool IsMonitoringRequests(TId id) { return false; }
- }
- }
|