Simian:
* Added lots of members to Agent, preparing for serialization * Added Clear() and Count to DoubleDictionary * Moved CreateCircuit and unassociatedAgents functionality out of Simian core and into UDPServer extension git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@2237 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
@@ -39,6 +39,20 @@ namespace Simian
|
||||
}
|
||||
}
|
||||
|
||||
public void Clear()
|
||||
{
|
||||
lock (syncObject)
|
||||
{
|
||||
Dictionary1.Clear();
|
||||
Dictionary2.Clear();
|
||||
}
|
||||
}
|
||||
|
||||
public int Count
|
||||
{
|
||||
get { return Dictionary1.Count; }
|
||||
}
|
||||
|
||||
public bool TryGetValue(TKey1 key, out TValue value)
|
||||
{
|
||||
return Dictionary1.TryGetValue(key, out value);
|
||||
|
||||
Reference in New Issue
Block a user