* Replacing hacky ClientManagerRef in TestClient with a proper singleton implementation of ClientManager

* Use BeginLogin in TestClient to try out asynchronous logins (this is experimental and may very likely break things, hooray for trunk)

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2715 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
John Hurliman
2009-05-08 18:57:45 +00:00
parent 1ac746c3f2
commit 9801078b08
5 changed files with 109 additions and 101 deletions

View File

@@ -29,7 +29,7 @@ namespace OpenMetaverse.TestClient
string line = lines[i].Trim();
if (line.Length > 0)
ClientManagerRef.ClientManager.DoCommandAll(line, UUID.Zero);
ClientManager.Instance.DoCommandAll(line, UUID.Zero);
}
return "Finished executing " + lines.Length + " commands";