IDiskCacheState.cs 471 B

1234567891011121314151617181920
  1. using System;
  2. namespace Ryujinx.Cpu
  3. {
  4. /// <summary>
  5. /// Disk cache load state report and management interface.
  6. /// </summary>
  7. public interface IDiskCacheLoadState
  8. {
  9. /// <summary>
  10. /// Event used to report the cache load progress.
  11. /// </summary>
  12. event Action<LoadState, int, int> StateChanged;
  13. /// <summary>
  14. /// Cancels the disk cache load process.
  15. /// </summary>
  16. void Cancel();
  17. }
  18. }