将以往的代码复制到代码库

This commit is contained in:
于智纯
2025-08-30 17:19:57 +08:00
parent da46e0242d
commit 20ea70bf64
198 changed files with 10075 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Platform
{
/// <summary>
/// 异步控制:开启新的线程执行新任务
/// </summary>
public class ASync// : StructInstructBase
{
//
}
}

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Platform
{
/// <summary>
/// 休眠控制:休眠一段时间后继续执行
/// </summary>
internal class Sleep
{
}
}

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Platform
{
/// <summary>
/// 时序控制:变更当前指令空间执行线程的同步时序
/// </summary>
public class Sync
{
}
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Future.Platform
{
/// <summary>
/// 等待控制:等待同步时序信号变更为期望的信号再执行
/// </summary>
internal class Wait
{
/// <summary>
/// 检查同步信号的频率
/// </summary>
public int Internal { get; set; }
}
}