mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 03:06:05 +08:00
Made OARs use the new serialization procedure. (TPs/crossings still on the old one) Added an options argument down the pipeline. For the time being it takes --old-guids as an option to produce <Guid> instead of <UUID>.
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
|
||||
namespace OpenSim.Region.Framework.Interfaces
|
||||
@@ -46,7 +47,7 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||
/// the EventManager.OnOarFileSaved event.
|
||||
///
|
||||
/// <param name="savePath"></param>
|
||||
void ArchiveRegion(string savePath);
|
||||
void ArchiveRegion(string savePath, Dictionary<string, object> options);
|
||||
|
||||
/// <summary>
|
||||
/// Archive the region to the given path
|
||||
@@ -57,7 +58,7 @@ namespace OpenSim.Region.Framework.Interfaces
|
||||
///
|
||||
/// <param name="savePath"></param>
|
||||
/// <param name="requestId">If supplied, this request Id is later returned in the saved event</param>
|
||||
void ArchiveRegion(string savePath, Guid requestId);
|
||||
void ArchiveRegion(string savePath, Guid requestId, Dictionary<string, object> options);
|
||||
|
||||
/// <summary>
|
||||
/// Archive the region to a stream.
|
||||
|
||||
Reference in New Issue
Block a user