IDynamicObject.cs 272 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ConnectionPool.test
  5. {
  6. public interface IDynamicObject
  7. {
  8. void Create(Object param);
  9. Object GetInnerObject();
  10. bool IsValidate();
  11. void Release();
  12. }
  13. }