diff options
author | Charles Krinke | 2008-05-27 14:36:23 +0000 |
---|---|---|
committer | Charles Krinke | 2008-05-27 14:36:23 +0000 |
commit | e2e692c5832143b9338b7d73f095bf6c753a3a94 (patch) | |
tree | 9aa6accd7beab079585d037c5086c578bc4605f1 /OpenSim/Region/Environment/Interfaces | |
parent | * Implement asynchronous assets request for archiving (diff) | |
download | opensim-SC_OLD-e2e692c5832143b9338b7d73f095bf6c753a3a94.zip opensim-SC_OLD-e2e692c5832143b9338b7d73f095bf6c753a3a94.tar.gz opensim-SC_OLD-e2e692c5832143b9338b7d73f095bf6c753a3a94.tar.bz2 opensim-SC_OLD-e2e692c5832143b9338b7d73f095bf6c753a3a94.tar.xz |
Thank you kindly, Melanie for a patch that adds:
GetSerializationData() and CreateFromData() methods
Diffstat (limited to 'OpenSim/Region/Environment/Interfaces')
-rw-r--r-- | OpenSim/Region/Environment/Interfaces/IWorldComm.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs index c471e7f..c2a55eb 100644 --- a/OpenSim/Region/Environment/Interfaces/IWorldComm.cs +++ b/OpenSim/Region/Environment/Interfaces/IWorldComm.cs | |||
@@ -25,6 +25,7 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System; | ||
28 | using libsecondlife; | 29 | using libsecondlife; |
29 | using OpenSim.Framework; | 30 | using OpenSim.Framework; |
30 | using OpenSim.Region.Environment.Modules.Scripting.WorldComm; | 31 | using OpenSim.Region.Environment.Modules.Scripting.WorldComm; |
@@ -40,5 +41,8 @@ namespace OpenSim.Region.Environment.Interfaces | |||
40 | void ListenControl(LLUUID itemID, int handle, int active); | 41 | void ListenControl(LLUUID itemID, int handle, int active); |
41 | void ListenRemove(LLUUID itemID, int handle); | 42 | void ListenRemove(LLUUID itemID, int handle); |
42 | void DeleteListener(LLUUID itemID); | 43 | void DeleteListener(LLUUID itemID); |
44 | Object[] GetSerializationData(LLUUID itemID); | ||
45 | void CreateFromData(uint localID, LLUUID itemID, LLUUID hostID, | ||
46 | Object[] data); | ||
43 | } | 47 | } |
44 | } | 48 | } |