├── .gitignore ├── LICENSE ├── README.mkd ├── examples ├── Main.as └── org │ └── osflash │ └── async │ ├── BenchmarkWhen.as │ ├── DeferredEventDispatcherExample.as │ └── impl │ ├── TweetVO.as │ └── XMLTweetParser.as ├── libs ├── flexunit-4.0.0.swc ├── flexunit-cilistener-4.0.0.swc └── flexunitTasks-4.0.0.jar ├── src └── org │ └── osflash │ └── async │ ├── Deferred.as │ ├── DeferredEventDispatcher.as │ ├── Promise.as │ └── when.as └── test-src ├── TestRunner.as └── org └── osflash └── async ├── TestDeferred.as ├── TestWhen.as └── mocks ├── PromiseEvent.as └── SimpleDeferred.as /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/LICENSE -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/README.mkd -------------------------------------------------------------------------------- /examples/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/examples/Main.as -------------------------------------------------------------------------------- /examples/org/osflash/async/BenchmarkWhen.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/examples/org/osflash/async/BenchmarkWhen.as -------------------------------------------------------------------------------- /examples/org/osflash/async/DeferredEventDispatcherExample.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/examples/org/osflash/async/DeferredEventDispatcherExample.as -------------------------------------------------------------------------------- /examples/org/osflash/async/impl/TweetVO.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/examples/org/osflash/async/impl/TweetVO.as -------------------------------------------------------------------------------- /examples/org/osflash/async/impl/XMLTweetParser.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/examples/org/osflash/async/impl/XMLTweetParser.as -------------------------------------------------------------------------------- /libs/flexunit-4.0.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/libs/flexunit-4.0.0.swc -------------------------------------------------------------------------------- /libs/flexunit-cilistener-4.0.0.swc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/libs/flexunit-cilistener-4.0.0.swc -------------------------------------------------------------------------------- /libs/flexunitTasks-4.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/libs/flexunitTasks-4.0.0.jar -------------------------------------------------------------------------------- /src/org/osflash/async/Deferred.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/src/org/osflash/async/Deferred.as -------------------------------------------------------------------------------- /src/org/osflash/async/DeferredEventDispatcher.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/src/org/osflash/async/DeferredEventDispatcher.as -------------------------------------------------------------------------------- /src/org/osflash/async/Promise.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/src/org/osflash/async/Promise.as -------------------------------------------------------------------------------- /src/org/osflash/async/when.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/src/org/osflash/async/when.as -------------------------------------------------------------------------------- /test-src/TestRunner.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/test-src/TestRunner.as -------------------------------------------------------------------------------- /test-src/org/osflash/async/TestDeferred.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/test-src/org/osflash/async/TestDeferred.as -------------------------------------------------------------------------------- /test-src/org/osflash/async/TestWhen.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/test-src/org/osflash/async/TestWhen.as -------------------------------------------------------------------------------- /test-src/org/osflash/async/mocks/PromiseEvent.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/test-src/org/osflash/async/mocks/PromiseEvent.as -------------------------------------------------------------------------------- /test-src/org/osflash/async/mocks/SimpleDeferred.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonnyreeves/as3-async/HEAD/test-src/org/osflash/async/mocks/SimpleDeferred.as --------------------------------------------------------------------------------