# eLoop **Repository Path**: gedo4547/eloop ## Basic Information - **Project Name**: eLoop - **Description**: 事件轮询器 - **Primary Language**: C# - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-12 - **Last Updated**: 2024-11-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # eloop #### 介绍 使用C#实现的简单event loop #### 最简单的使用方式 var allotter = new DefaultSchedulerAllotter(); var taskScheduler = allotter.Next(); taskScheduler.Schedule((o) => { Console.WriteLine(o); }, "hello world");