Subscription

scalafx.util.Subscription
See theSubscription companion object
class Subscription(val delegate: Subscription) extends SFXDelegate[Subscription]

Attributes

Companion
object
Graph
Supertypes
trait SFXDelegate[Subscription]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

Combines this Subscription with the given Subscription and returns a new Subscription which will cancel both when cancelled.

Combines this Subscription with the given Subscription and returns a new Subscription which will cancel both when cancelled.

This is equivalent to Subscription.combine(this, other).

Value parameters

other

another Subscription, cannot be null

Attributes

Returns

a combined Subscription which will cancel both when cancelled, never null

Throws
NullPointerException

when other is null

Inherited methods

override def equals(ref: Any): Boolean

Verifies if a object is equals to this delegate.

Verifies if a object is equals to this delegate.

Value parameters

ref

Object to be compared.

Attributes

Returns

if the other object is equals to this delegate or not.

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
override def hashCode: Int

Attributes

Returns

The delegate hashcode

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate
override def toString: String

Attributes

Returns

Returns the original delegate's toString() adding a [SFX] prefix.

Definition Classes
SFXDelegate -> Any
Inherited from:
SFXDelegate

Concrete fields

override val delegate: Subscription

JavaFX object to be wrapped.

JavaFX object to be wrapped.

Attributes