Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Core/RT/OperationCenter/IOperation.cs

10 lines
225 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
namespace Aitex.Core.RT.OperationCenter
{
public interface IOperation
{
void Subscribe(string key, OperationFunction op);
bool DoOperation(string operationName, out string reason, int time, params object[] args);
}
}