OpenSim.Region.CoreModules.World.Archiver.AssetsRequest.PerformAssetsRequestCallback C# (CSharp) Method

PerformAssetsRequestCallback() protected method

Perform the callback on the original requester of the assets
protected PerformAssetsRequestCallback ( object o ) : void
o object
return void
        protected void PerformAssetsRequestCallback(object o)
        {
            try
            {
                m_assetsRequestCallback(m_foundAssetUuids, m_notFoundAssetUuids);
            }
            catch (Exception e)
            {
                m_log.ErrorFormat(
                    "[ARCHIVER]: Terminating archive creation since asset requster callback failed with {0}", e);
            }
        }
    }