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