using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Aitex.Core.RT.OperationCenter { public interface ICommonOperation { void Subscribe(T instance, string keyPrefix = null) where T : class; void Subscribe(string key, Func op); bool DoOperation(string operationName, params object[] args); void Record(string chamberId, string operation); } }