register method

R register(
  1. String ownerId
)

Registers this reactive object with an owner (fluent API).

Implementation

R register(String ownerId) {
  this.ownerId = ownerId;

  return this;
}