Add a method to determine the count of packets in a throttle

This commit is contained in:
Melanie
2009-10-01 22:35:57 +01:00
parent 7c1fdb2540
commit 54a912bb9c
3 changed files with 27 additions and 0 deletions

View File

@@ -863,5 +863,10 @@ namespace OpenSim.Region.ClientStack.LindenUDP
m_PacketQueue.Close();
Thread.CurrentThread.Abort();
}
public int GetQueueCount(ThrottleOutPacketType queue)
{
return m_PacketQueue.GetQueueCount(queue);
}
}
}