async deno:异步原始模块从Python的Deno的asyncio松散移植 源码
异步术语 异步原始模块从松散端口为。 用法 锁 锁可用于保证对共享资源的独占访问。 import { Lock } from "https://deno.land/x/async/mod.ts" ; import { delay } from "https://deno.land/std@0.86.0/async/mod.ts" ; const lock = new Lock ( ) ; const task1 = async ( ) => { await lock . with ( async ( ) => { await delay ( 50 ) ; console . log ( "Task1 start" ) ; await delay ( 100 ) ; console . log ( "Task1 end" ) ; } ) ; } ;
文件列表
async-deno-main.zip
(预估有个23文件)
async-deno-main
mod.ts
175B
deps_test.ts
167B
condition_test.ts
4KB
condition.ts
3KB
event_test.ts
2KB
.github
workflows
test.yml
791B
deps.ts
156B
用户评论