Source: lib/util/i_destroyable.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.util.IDestroyable');
  7. /**
  8. * An interface to standardize how objects are destroyed.
  9. *
  10. * @interface
  11. * @exportInterface
  12. */
  13. shaka.util.IDestroyable = class {
  14. /**
  15. * Request that this object be destroyed, releasing all resources and shutting
  16. * down all operations. Returns a Promise which is resolved when destruction
  17. * is complete. This Promise should never be rejected.
  18. *
  19. * @return {!Promise}
  20. * @exportInterface
  21. */
  22. destroy() {}
  23. };