All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scalajs.rx.Disposable.scala Maven / Gradle / Ivy

The newest version!
package org.scalajs.rx

import scala.scalajs.js

/**
  * Provides a set of static methods for creating Disposables, which defines a method to release allocated resources.
  * @author [email protected]
  */
@js.native
trait Disposable extends js.Object {

  /**
    * Performs the task of cleaning up resources.
    * @example Rx.Disposable.prototype.dispose()
    */
  def dispose(): Unit = js.native

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy