This commit is contained in:
CortexCore
2023-10-06 23:43:19 +08:00
parent ebf9c1f526
commit 2c4710bc5d
186 changed files with 111802 additions and 764 deletions

View File

@@ -1,9 +1,12 @@
namespace BITKit
using System;
namespace BITKit
{
/// <summary>
/// 订阅者,发布者下发任务给支持并优先级最高的订阅者
/// </summary>
/// <typeparam name="T"></typeparam>
[Obsolete]
public interface TaskSubscriber<in T>
{
/// <summary>
@@ -22,6 +25,7 @@
/// 发布接口,向发布者下发任务
/// </summary>
/// <typeparam name="T"></typeparam>
[Obsolete("Use Func Instanced",true)]
public interface TaskPublisher<in T>
{
/// <summary>