AppModeEnum.cs 834 B

12345678910111213141516171819202122
  1. namespace BO.ProcessServer.Business.Enums
  2. {
  3. public enum AppModeEnum
  4. {
  5. /// <summary>
  6. /// Works in simultaneous mode (documents are not processing and randomly generates output OK or Fail). Any call for processing documents enabled.
  7. /// </summary>
  8. ProxyProcess,
  9. /// <summary>
  10. /// Works in simultaneous mode (documents are processing but call to application server returns randomly generated output). Any call for processing documents is disabled.
  11. /// </summary>
  12. ProxyApp,
  13. /// <summary>
  14. /// Combination of <see cref="ProxyProcess"/> and <see cref="ProxyApp"/>. Self test mode.
  15. /// </summary>
  16. Proxy,
  17. /// <summary>
  18. /// Works in production mode
  19. /// </summary>
  20. Production
  21. }
  22. }