From commits-return-6387-archive-asf-public=cust-asf.ponee.io@royale.apache.org Wed Oct 10 21:34:15 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 2252C18076D for ; Wed, 10 Oct 2018 21:34:13 +0200 (CEST) Received: (qmail 38598 invoked by uid 500); 10 Oct 2018 19:34:13 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 38527 invoked by uid 99); 10 Oct 2018 19:34:13 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 Oct 2018 19:34:13 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 8995A850C1; Wed, 10 Oct 2018 19:34:12 +0000 (UTC) Date: Wed, 10 Oct 2018 19:34:12 +0000 To: , "' commits@royale.apache.org" , '@gitbox.apache.org, Subject: [royale-asjs] branch develop updated (3d686fe -> c4aa73d) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <153920005246.1023.2191139427816263468@gitbox.apache.org> From: aharui@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-asjs X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: 3d686fe842c203b19dd038cd7c1beb760ccecb37 X-Git-Newrev: c4aa73d08e5037cd0873f3d29934398e502f210a X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. aharui pushed a change to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git. from 3d686fe [maven-release-plugin] prepare for next development iteration new 2afa347 just use lastResult for this service. it does not wrap the result in a secondary object new 1efd8fb need these to compile RichTextEditor.mxml new 61c09aa mx remoteobject expects this component new c2483ab fix binding events for TextInput new aab3979 events need SWFOverride for clone() new c6d61c5 full impl of AsyncToken new 4ab33dd handle null new 1663526 override result handler to tickle binding subsystem. new 6354e2f JS doesn't like more than one catch new e6c3754 need coercion here new f0a8d1c workaround dependency issue for now new bbe5e2d allow different sets of messages to be used new 04aedce handle primitive types new 3879e66 try rerunning layout on invalidateSize. Might result in too many calls and we'll need to queue them new 1442699 get rid of binding warning. If an object's fields never change at runtime and just represent an object retrieved from the network, you still need setters, but you can indicate that there is no change event new c4aa73d Bindings to Operations will need coercions so the compiler can know when to stop using Proxy access. RemoteObject is a Proxy The 16 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../RemoteObjectAMFTest/src/main/royale/App.mxml | 7 +- .../src/main/royale/valueObjects/Product.as | 5 + .../src/main/config/compile-js-config.xml | 4 + .../org/apache/royale/binding/DataBindingBase.as | 1 - .../src/main/config/compile-swf-config.xml | 4 + .../src/main/resources/mx-royale-manifest.xml | 1 + .../src/main/royale/mx/controls/TextInput.as | 9 +- .../src/main/royale/mx/core/UIComponent.as | 6 +- .../src/main/royale/mx/logging/LogEvent.as | 1 + .../royale/mx/messaging/config/ServerConfig.as | 4 +- .../royale/mx/messaging/events/ChannelEvent.as | 1 + .../mx/messaging/events/ChannelFaultEvent.as | 1 + .../royale/mx/messaging/events/MessageAckEvent.as | 1 + .../royale/mx/messaging/events/MessageEvent.as | 1 + .../mx/messaging/events/MessageFaultEvent.as | 1 + .../mx/messaging/messages/AbstractMessage.as | 3 +- .../src/main/royale/mx/net/NetConnection.as | 35 +- .../src/main/royale/mx/rpc/AbstractInvoker.as | 41 +- .../MXRoyale/src/main/royale/mx/rpc/AsyncToken.as | 534 ++++++++++----------- .../src/main/royale/mx/rpc/events/FaultEvent.as | 1 + .../src/main/royale/mx/rpc/events/InvokeEvent.as | 1 + .../src/main/royale/mx/rpc/events/ResultEvent.as | 1 + .../src/main/royale/mx/rpc/remoting/Operation.as | 25 +- .../royale/mx/rpc/remoting/mxml/RemoteObject.as | 27 +- .../royale/org/apache/royale/net/RemoteObject.as | 2 + .../org/apache/royale/net/SimpleRemoteObject.as | 2 + .../royale/net/remoting/amf/AMFNetConnection.as | 13 +- .../royale/reflection/getQualifiedClassName.as | 10 +- 28 files changed, 429 insertions(+), 313 deletions(-)