documentation (OnBackup)

connector_plugin
SignpostMarv 2012-09-11 20:01:31 +01:00 committed by Melanie
parent fd8a7e64b9
commit 5e51f16ceb
1 changed files with 7 additions and 0 deletions

View File

@ -92,6 +92,13 @@ namespace OpenSim.Region.Framework.Scenes
public delegate void OnBackupDelegate(ISimulationDataService datastore, bool forceBackup);
/// <summary>
/// Triggered when a region is backed up/persisted to storage
/// </summary>
/// <remarks>
/// This gets triggered in <see cref="OpenSim.Region.Framework.Scenes.Scene.Backup"/>
/// and is fired before the persistence occurs.
/// </remarks>
public event OnBackupDelegate OnBackup;
public delegate void OnClientConnectCoreDelegate(IClientCore client);