PageRenderTime 44ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/Source/Bifrost/Commands/ICommandContextStore.cs

#
C# | 38 lines | 10 code | 1 blank | 27 comment | 0 complexity | a0aecb3943aec96e67897d970c177463 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 System;
  23. namespace Bifrost.Commands
  24. {
  25. /// <summary>
  26. /// Defines the store for getting and saving <see cref="CommandContext">CommandContext</see> from its persistent data store
  27. /// </summary>
  28. public interface ICommandContextStore
  29. {
  30. /// <summary>
  31. /// Get a specific <see cref="CommandContext">CommandContext</see> based on its Id
  32. /// </summary>
  33. /// <param name="id">The Id of the <see cref="CommandContext">CommandContext</see> to get</param>
  34. /// <returns>The actual <see cref="CommandContext">CommandContext</see></returns>
  35. CommandContext Get(Guid id);
  36. }
  37. }