PageRenderTime 47ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Bifrost/Execution/IApplication.cs

#
C# | 52 lines | 13 code | 5 blank | 34 comment | 0 complexity | 0d1b1dff7ab3cbe758acc473cec6aedc MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. #region License
  2. //
  3. // Copyright (c) 2008-2012, DoLittle Studios and Komplett ASA
  4. //
  5. // Licensed under the Microsoft Permissive License (Ms-PL), Version 1.1 (the "License")
  6. // With one exception :
  7. // Commercial libraries that is based partly or fully on Bifrost and is sold commercially,
  8. // must obtain a commercial license.
  9. //
  10. // You may not use this file except in compliance with the License.
  11. // You may obtain a copy of the license at
  12. //
  13. // http://bifrost.codeplex.com/license
  14. //
  15. // Unless required by applicable law or agreed to in writing, software
  16. // distributed under the License is distributed on an "AS IS" BASIS,
  17. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. // See the License for the specific language governing permissions and
  19. // limitations under the License.
  20. //
  21. #endregion
  22. using Bifrost.Configuration;
  23. namespace Bifrost.Execution
  24. {
  25. /// <summary>
  26. /// Represents an application that configures Bifrost
  27. /// </summary>
  28. public interface IApplication
  29. {
  30. /// <summary>
  31. /// Gets the container used by the application
  32. /// </summary>
  33. IContainer Container { get; }
  34. /// <summary>
  35. /// Gets the called to configure the applications
  36. /// </summary>
  37. void OnConfigure(Configure configure);
  38. /// <summary>
  39. /// Gets called when Application is started
  40. /// </summary>
  41. void OnStarted();
  42. /// <summary>
  43. /// Gets called when Application is stopped
  44. /// </summary>
  45. void OnStopped();
  46. }
  47. }