diff options
Diffstat (limited to 'OpenSim/Framework/Communications/RestClient.cs')
-rw-r--r-- | OpenSim/Framework/Communications/RestClient.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/Communications/RestClient.cs b/OpenSim/Framework/Communications/RestClient.cs index 4ed62bf..7c8876a 100644 --- a/OpenSim/Framework/Communications/RestClient.cs +++ b/OpenSim/Framework/Communications/RestClient.cs | |||
@@ -16,14 +16,14 @@ namespace OpenSim.Framework.Communications | |||
16 | /// <remarks> | 16 | /// <remarks> |
17 | /// This class is a generic implementation of a REST (Representational State Transfer) web service. This | 17 | /// This class is a generic implementation of a REST (Representational State Transfer) web service. This |
18 | /// class is designed to execute both synchronously and asynchronously. | 18 | /// class is designed to execute both synchronously and asynchronously. |
19 | /// | 19 | /// |
20 | /// Internally the implementation works as a two stage asynchronous web-client. | 20 | /// Internally the implementation works as a two stage asynchronous web-client. |
21 | /// When the request is initiated, RestClient will query asynchronously for for a web-response, | 21 | /// When the request is initiated, RestClient will query asynchronously for for a web-response, |
22 | /// sleeping until the initial response is returned by the server. Once the initial response is retrieved | 22 | /// sleeping until the initial response is returned by the server. Once the initial response is retrieved |
23 | /// the second stage of asynchronous requests will be triggered, in an attempt to read of the response | 23 | /// the second stage of asynchronous requests will be triggered, in an attempt to read of the response |
24 | /// object into a memorystream as a sequence of asynchronous reads. | 24 | /// object into a memorystream as a sequence of asynchronous reads. |
25 | /// | 25 | /// |
26 | /// The asynchronisity of RestClient is designed to move as much processing into the back-ground, allowing | 26 | /// The asynchronisity of RestClient is designed to move as much processing into the back-ground, allowing |
27 | /// other threads to execute, while it waits for a response from the web-service. RestClient itself can be | 27 | /// other threads to execute, while it waits for a response from the web-service. RestClient itself can be |
28 | /// invoked by the caller in either synchronous mode or asynchronous modes. | 28 | /// invoked by the caller in either synchronous mode or asynchronous modes. |
29 | /// </remarks> | 29 | /// </remarks> |
@@ -36,7 +36,7 @@ namespace OpenSim.Framework.Communications | |||
36 | #region member variables | 36 | #region member variables |
37 | 37 | ||
38 | /// <summary> | 38 | /// <summary> |
39 | /// The base Uri of the web-service e.g. http://www.google.com | 39 | /// The base Uri of the web-service e.g. http://www.google.com |
40 | /// </summary> | 40 | /// </summary> |
41 | private string _url; | 41 | private string _url; |
42 | 42 | ||
@@ -92,7 +92,7 @@ namespace OpenSim.Framework.Communications | |||
92 | 92 | ||
93 | 93 | ||
94 | /// <summary> | 94 | /// <summary> |
95 | /// if an exception occours during async processing, we need to save it, so it can be | 95 | /// if an exception occours during async processing, we need to save it, so it can be |
96 | /// rethrown on the primary thread; | 96 | /// rethrown on the primary thread; |
97 | /// </summary> | 97 | /// </summary> |
98 | private Exception _asyncException; | 98 | private Exception _asyncException; |
@@ -341,7 +341,7 @@ namespace OpenSim.Framework.Communications | |||
341 | { | 341 | { |
342 | AsyncResult<Stream> ar = (AsyncResult<Stream>) asyncResult; | 342 | AsyncResult<Stream> ar = (AsyncResult<Stream>) asyncResult; |
343 | 343 | ||
344 | // Wait for operation to complete, then return result or | 344 | // Wait for operation to complete, then return result or |
345 | // throw exception | 345 | // throw exception |
346 | return ar.EndInvoke(); | 346 | return ar.EndInvoke(); |
347 | } | 347 | } |