open method

  1. @override
Future open(
  1. String? correlationId
)

Opens the component.

  • correlationId (optional) transaction id to trace execution through call chain. Return Future that receives null no errors occured. Throws error

Implementation

@override
Future open(String? correlationId) async {
  if (!_opened) {
    _opened = true;
    var components = getAll();
    if (topReferences != null) {
      Referencer.setReferences(topReferences!, components);
    }
  }
}