forward method

void forward(
  1. Computable<T> computable
)

Forwards the values of the provided computable onto this computable, immediately emitting its current value.

Implementation

void forward(Computable<T> computable) {
  add(computable.get());
  _addDependency(computable);
}