异步术语 异步原始模块从松散端口为。 用法 锁 锁可用于保证对共享资源的独占访问。 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" ) ; } ) ; } ;