+ RequestImage now blocks by using signals via ManualResetEvent.WaitOne()

+ Added ImageManager to SecondLife / is only initialized on first use
+ Updated async callbacks for ImageRequestAsync to include Status Message
+ Updated GroupManager to use ImageManager via Client.Images.*

git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@496 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Michael Cortez
2006-11-03 20:42:37 +00:00
parent ea82ee3f5b
commit eeec4c24f8
5 changed files with 61 additions and 29 deletions

View File

@@ -128,7 +128,7 @@ namespace IA_TestAsyncImage
}
}
private void NewImageRetrievedCallBack( LLUUID ImageID, byte[] data, bool wasCached )
private void NewImageRetrievedCallBack( LLUUID ImageID, byte[] data, bool wasCached, string statusMsg )
{
if (wasCached)
{
@@ -138,7 +138,7 @@ namespace IA_TestAsyncImage
{
if (data == null)
{
Console.WriteLine("Image Data is null: " + ImageID);
Console.WriteLine("Image Data is null (" + statusMsg + "): " + ImageID);
}
else
{