So, if you want to do something like this:
private function resultHandler(event:ResultEvent):void { dispatchEvent(event); }
Just add the following method to com.dannypatterson.remoting.ResultEvent:
public override function clone():Event { return new ResultEvent(type, bubbles, cancelable, result); }
Ditto for the FaultEvent.
Recent Comments