bind<T extends Object> method

  1. @protected
T bind<T extends Object>(
  1. T value,
  2. Signal signal
)

Returns the value and also connects the signal to any Watcher that accessed this value.

Implementation

@protected
T bind<T extends Object>(T value, Signal signal) {
  return SubscriptionManager.connectToSubscribersOf(value, signal);
}