Source: externs/shaka/abortable.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @externs
  8. */
  9. /**
  10. * A representation of an abortable operation. Note that these are not
  11. * cancelable. Cancelation implies undoing what has been done so far,
  12. * whereas aborting only means that further work is stopped.
  13. *
  14. * @interface
  15. * @template T
  16. * @exportDoc
  17. */
  18. shaka.extern.IAbortableOperation = function() {};
  19. /**
  20. * A Promise which represents the underlying operation. It is resolved when
  21. * the operation is complete, and rejected if the operation fails or is
  22. * aborted. Aborted operations should be rejected with a shaka.util.Error
  23. * object using the error code OPERATION_ABORTED.
  24. *
  25. * @const {!Promise.<T>}
  26. * @exportDoc
  27. */
  28. shaka.extern.IAbortableOperation.prototype.promise;
  29. /**
  30. * Can be called by anyone holding this object to abort the underlying
  31. * operation. This is not cancelation, and will not necessarily result in
  32. * any work being undone. abort() should return a Promise which is resolved
  33. * when the underlying operation has been aborted. The returned Promise
  34. * should never be rejected.
  35. *
  36. * @return {!Promise}
  37. * @exportDoc
  38. */
  39. shaka.extern.IAbortableOperation.prototype.abort = function() {};
  40. /**
  41. * @param {function(boolean)} onFinal A callback to be invoked after the
  42. * operation succeeds or fails. The boolean argument is true if the operation
  43. * succeeded and false if it failed.
  44. * @return {!shaka.extern.IAbortableOperation.<T>} Returns this.
  45. * @exportDoc
  46. */
  47. shaka.extern.IAbortableOperation.prototype.finally = function(onFinal) {};