mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 19:03:29 +08:00
- 将 IArchitectureLifecycle 重命名为 IArchitectureLifecycleHook - 将 IArchitecturePhaseAware 重命名为 IArchitecturePhaseListener - 更新内部生命周期钩子集合类型为 IArchitectureLifecycleHook - 更新 NotifyPhaseAwareObjects 方法中的类型引用 - 移除 IArchitectureModule 对生命周期接口的继承 - 更新 IModel 和 ISystem 接口中的相位感知类型引用 - 删除废弃的 AbstractModule 抽象类
11 lines
454 B
C#
11 lines
454 B
C#
using GFramework.Core.Abstractions.architecture;
|
|
using GFramework.Core.Abstractions.lifecycle;
|
|
using GFramework.Core.Abstractions.rule;
|
|
|
|
namespace GFramework.Core.Abstractions.system;
|
|
|
|
/// <summary>
|
|
/// 系统接口,定义了系统的基本行为和功能
|
|
/// 该接口继承了多个框架相关的接口,提供了系统初始化和销毁能力
|
|
/// </summary>
|
|
public interface ISystem : IContextAware, IArchitecturePhaseListener, ILifecycle; |