publishRxAspects method

void publishRxAspects()

Publish Rx aspects to the host.

Implementation

void publishRxAspects() {
  assert(shouldExists(_pub, 'Pub of RxImpl should not be null.'));
  if (_isNullBroadcast) {
    return _pub!.publish();
  } else if (rxAspects.isNotEmpty) {
    return _pub!.publish(rxAspects);
  }
}