{"id":13744629,"url":"https://github.com/AndersDJohnson/actionscript-async","last_synced_at":"2025-05-09T03:32:51.270Z","repository":{"id":16446152,"uuid":"19197921","full_name":"AndersDJohnson/actionscript-async","owner":"AndersDJohnson","description":"Async utilities for ActionScript.","archived":false,"fork":false,"pushed_at":"2019-04-08T01:02:35.000Z","size":2,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-08-29T02:02:14.624Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"ActionScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndersDJohnson.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-04-27T07:01:35.000Z","updated_at":"2023-01-29T09:43:03.000Z","dependencies_parsed_at":"2022-07-25T04:46:27.577Z","dependency_job_id":null,"html_url":"https://github.com/AndersDJohnson/actionscript-async","commit_stats":null,"previous_names":["adjohnson916/actionscript-async"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndersDJohnson%2Factionscript-async","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndersDJohnson%2Factionscript-async/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndersDJohnson%2Factionscript-async/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndersDJohnson%2Factionscript-async/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndersDJohnson","download_url":"https://codeload.github.com/AndersDJohnson/actionscript-async/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224811100,"owners_count":17373914,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T05:01:12.982Z","updated_at":"2024-11-15T16:31:24.638Z","avatar_url":"https://github.com/AndersDJohnson.png","language":"ActionScript","readme":"actionscript-async\n==================\n\nAsync utilities for ActionScript, in the style of the [async] module for Node.js.\n\nPossible alternative to [AS3Commons Async].\n\n\n```as\nimport com.AndersDJohnson.async.Async;\n\n// ...\n\nAsync.tasks( [\n  function ( callback:Function):void {\n    // ...\n    callback( null /* , ... args */ );\n  },\n  function ( callback:Function):void {\n    // ...\n    callback( null /* , ... args */ );\n  }\n  // ...\n], function ( error:Error, results:Array ) {\n  // results is now an array with results passed to each task function's callback\n}\n```\n\n## Examples\n\n```as\nimport com.AndersDJohnson.async.Async;\n\n// ...\n\nAsync.tasks( [\n  function ( callback:Function):void {\n    callback( null, 'one', 1 );\n  },\n  function ( callback:Function):void {\n    callback( null, 'two', 2 );\n  }\n], function ( error:Error, results:Array ) {\n  // results is now equal to [ ['one', 1], ['two', 2] ] \n}\n```\n\n[async]: https://github.com/caolan/async\n[AS3Commons Async]: http://www.as3commons.org/as3-commons-async/index.html\n","funding_links":[],"categories":["Utilities"],"sub_categories":["Other Utilities"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAndersDJohnson%2Factionscript-async","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAndersDJohnson%2Factionscript-async","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAndersDJohnson%2Factionscript-async/lists"}