是否可以中止Flex RemoteObject調用?我想下面的方法,但HTTP請求在後臺仍在加載:中止RemoteObject調用
var r:RemoteObject = new RemoteObject('<myDestination>');
r.source('myClass');
r.myMethod.addEventListener(ResultEvent.RESULT, myResponse);
r.myMethod(); // lets say this method takes 5 second to call
r.channelSet.disconnectAll(); // I thought this would abort the actual HTTP request but its still running
編輯
我感興趣的是解放了瀏覽器的HTTP管道,就像在JavaScript凡事你可以在XHR上使用中止。
你的問題實際上不是在彈性方面,而是在服務器方面。我更新了我的答案。 – ktutnik 2011-04-11 21:23:06