diff options
author | Justin Clarke Casey | 2008-03-27 18:26:01 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-03-27 18:26:01 +0000 |
commit | 0609970f2e30615ffa38c0ddc852ffb9bfd1c47e (patch) | |
tree | b39eb004b25054c3ca44d3e1b174e1c25e1815d1 /OpenSim/Framework/Servers | |
parent | * Tweaking master uuid exception to make it clearer what just went wrong (use... (diff) | |
download | opensim-SC_OLD-0609970f2e30615ffa38c0ddc852ffb9bfd1c47e.zip opensim-SC_OLD-0609970f2e30615ffa38c0ddc852ffb9bfd1c47e.tar.gz opensim-SC_OLD-0609970f2e30615ffa38c0ddc852ffb9bfd1c47e.tar.bz2 opensim-SC_OLD-0609970f2e30615ffa38c0ddc852ffb9bfd1c47e.tar.xz |
* Correct asset type of Lost and Found folder - this might stop it appearing twice
* Other minor corrections to initial inventory contents
* These will only take affect for new users
Diffstat (limited to 'OpenSim/Framework/Servers')
-rw-r--r-- | OpenSim/Framework/Servers/RestObjectPoster.cs | 3 | ||||
-rw-r--r-- | OpenSim/Framework/Servers/RestObjectPosterResponse.cs | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/RestObjectPoster.cs b/OpenSim/Framework/Servers/RestObjectPoster.cs index 8cc1154..c77cb26 100644 --- a/OpenSim/Framework/Servers/RestObjectPoster.cs +++ b/OpenSim/Framework/Servers/RestObjectPoster.cs | |||
@@ -34,6 +34,9 @@ using System.Xml.Serialization; | |||
34 | 34 | ||
35 | namespace OpenSim.Framework.Servers | 35 | namespace OpenSim.Framework.Servers |
36 | { | 36 | { |
37 | /// <summary> | ||
38 | /// Makes an asynchronous REST request which doesn't require us to do anything with the response. | ||
39 | /// </summary> | ||
37 | public class RestObjectPoster | 40 | public class RestObjectPoster |
38 | { | 41 | { |
39 | public static void BeginPostObject<TRequest>(string requestUrl, TRequest obj) | 42 | public static void BeginPostObject<TRequest>(string requestUrl, TRequest obj) |
diff --git a/OpenSim/Framework/Servers/RestObjectPosterResponse.cs b/OpenSim/Framework/Servers/RestObjectPosterResponse.cs index e2479dd..1d99a80 100644 --- a/OpenSim/Framework/Servers/RestObjectPosterResponse.cs +++ b/OpenSim/Framework/Servers/RestObjectPosterResponse.cs | |||
@@ -36,6 +36,9 @@ namespace OpenSim.Framework.Servers | |||
36 | { | 36 | { |
37 | public delegate void ReturnResponse<T>(T reponse); | 37 | public delegate void ReturnResponse<T>(T reponse); |
38 | 38 | ||
39 | /// <summary> | ||
40 | /// Makes an asynchronous REST request with a callback to invoke with the response. | ||
41 | /// </summary> | ||
39 | public class RestObjectPosterResponse<TResponse> | 42 | public class RestObjectPosterResponse<TResponse> |
40 | { | 43 | { |
41 | public ReturnResponse<TResponse> ResponseCallback; | 44 | public ReturnResponse<TResponse> ResponseCallback; |