diff options
author | Justin Clark-Casey (justincc) | 2012-06-27 00:41:46 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-27 00:41:46 +0100 |
commit | d0432133172f4147f7401f214c703611978423cd (patch) | |
tree | 3677b37a4525fc5165c5b5378abe9fbff671aa0e /OpenSim/Region/Framework/Interfaces/IScenePresence.cs | |
parent | Automatically disable log4net before each regression test so that logging is ... (diff) | |
download | opensim-SC_OLD-d0432133172f4147f7401f214c703611978423cd.zip opensim-SC_OLD-d0432133172f4147f7401f214c703611978423cd.tar.gz opensim-SC_OLD-d0432133172f4147f7401f214c703611978423cd.tar.bz2 opensim-SC_OLD-d0432133172f4147f7401f214c703611978423cd.tar.xz |
refactor: Move ScenePresence <-> AgentData attachments copying code into AttachmentsModule.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IScenePresence.cs')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IScenePresence.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IScenePresence.cs b/OpenSim/Region/Framework/Interfaces/IScenePresence.cs index 5e43843..19a8236 100644 --- a/OpenSim/Region/Framework/Interfaces/IScenePresence.cs +++ b/OpenSim/Region/Framework/Interfaces/IScenePresence.cs | |||
@@ -41,6 +41,12 @@ namespace OpenSim.Region.Framework.Interfaces | |||
41 | public interface IScenePresence : ISceneAgent | 41 | public interface IScenePresence : ISceneAgent |
42 | { | 42 | { |
43 | /// <summary> | 43 | /// <summary> |
44 | /// Copy of the script states while the agent is in transit. This state may | ||
45 | /// need to be placed back in case of transfer fail. | ||
46 | /// </summary> | ||
47 | List<string> InTransitScriptStates { get; } | ||
48 | |||
49 | /// <summary> | ||
44 | /// The AttachmentsModule synchronizes on this to avoid race conditions between commands to add and remove attachments. | 50 | /// The AttachmentsModule synchronizes on this to avoid race conditions between commands to add and remove attachments. |
45 | /// </summary> | 51 | /// </summary> |
46 | /// <remarks> | 52 | /// <remarks> |