You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by al...@apache.org on 2018/05/03 11:13:43 UTC

[royale-asjs] branch feature/MXRoyale updated: AsyncResponder.as Added

This is an automated email from the ASF dual-hosted git repository.

alinakazi pushed a commit to branch feature/MXRoyale
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/feature/MXRoyale by this push:
     new 19dd92d  AsyncResponder.as Added
19dd92d is described below

commit 19dd92dc53c4ebfa62510805a6bfa9be4e850504
Author: alinakazi <AL...@GMAIL.COM>
AuthorDate: Thu May 3 16:13:42 2018 +0500

    AsyncResponder.as Added
---
 .../src/main/royale/mx/rpc/AsyncResponder.as       | 133 +++++++++++++++++++++
 1 file changed, 133 insertions(+)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/AsyncResponder.as b/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/AsyncResponder.as
new file mode 100644
index 0000000..afce169
--- /dev/null
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/rpc/AsyncResponder.as
@@ -0,0 +1,133 @@
+////////////////////////////////////////////////////////////////////////////////
+//
+//  Licensed to the Apache Software Foundation (ASF) under one or more
+//  contributor license agreements.  See the NOTICE file distributed with
+//  this work for additional information regarding copyright ownership.
+//  The ASF licenses this file to You under the Apache License, Version 2.0
+//  (the "License"); you may not use this file except in compliance with
+//  the License.  You may obtain a copy of the License at
+//
+//      http://www.apache.org/licenses/LICENSE-2.0
+//
+//  Unless required by applicable law or agreed to in writing, software
+//  distributed under the License is distributed on an "AS IS" BASIS,
+//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//  See the License for the specific language governing permissions and
+//  limitations under the License.
+//
+////////////////////////////////////////////////////////////////////////////////
+
+package mx.rpc 
+{
+
+/**
+ * This class provides an RPC specific implementation of <code>mx.rpc.IResponder</code>.
+ * 
+ * It allows the creator to associate data (a token) and methods that should be 
+ * called when a request is completed.
+ *
+ * The result method specified must have the following signature:
+ *  <code><pre>
+ *     public function myResultFunction(result:Object, token:Object = null):void;
+ *  </pre></code>
+ *
+ * The fault method specified must have the following signature:
+ *  <code><pre>
+ *     public function myFaultFunction(error:Object, token:Object = null):void;
+ *  </pre></code>
+ * 
+ * Any other signature will result in a runtime error.
+ *  
+ *  @langversion 3.0
+ *  @playerversion Flash 9
+ *  @playerversion AIR 1.1
+ *  @productversion Flex 3
+ */
+public class AsyncResponder  
+{ //implements IResponder
+
+    //--------------------------------------------------------------------------
+    //
+    //  Constructor
+    //
+    //--------------------------------------------------------------------------
+
+    /**
+     *  Constructs an instance of the responder with the specified data and 
+     *  handlers.
+     *  
+     *  @param result Function that should be called when the request has
+     *          completed successfully.
+     *          Must have the following signature:
+     *          <pre>public function (result:Object, token:Object = null):void;</pre>
+     *  @param fault Function that should be called when the request has
+     *          completed with errors.
+     *          Must have the following signature:
+     *          <pre>public function (error:FaultEvent, token:Object = null):void;</pre>
+     *  @param token Additional information to associate with
+     *          this request.
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 9
+     *  @playerversion AIR 1.1
+     *  @productversion Flex 3
+     */
+    public function AsyncResponder(result:Function, fault:Function, token:Object = null)
+    {
+       /*  super();
+
+        _resultHandler = result;
+        _faultHandler = fault;
+        _token = token; */
+    }
+    
+    //--------------------------------------------------------------------------
+    //
+    //  Methods
+    //
+    //--------------------------------------------------------------------------
+
+    /**
+     *  This method is called by a service when the return value has been 
+     *  received.
+     *
+     *  @param data Object containing the information returned from the request.
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 9
+     *  @playerversion AIR 1.1
+     *  @productversion Flex 3
+     */
+    /* public function result(data:Object):void
+    {
+        _resultHandler(data, _token);
+    } */
+    
+    /**
+     *  This method is called by a service when an error has been received.
+     *
+     *  @param info Object containing the information about the error that 
+     *          occured.
+     *  
+     *  @langversion 3.0
+     *  @playerversion Flash 9
+     *  @playerversion AIR 1.1
+     *  @productversion Flex 3
+     */
+    /* public function fault(info:Object):void
+    {
+        _faultHandler(info, _token);
+    } */
+    
+    //--------------------------------------------------------------------------
+    //
+    //  Variables
+    //
+    //--------------------------------------------------------------------------
+
+   /*  private var _resultHandler:Function;
+    private var _faultHandler:Function;
+    private var _token:Object; */
+}
+
+}
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
alinakazi@apache.org.