initExecutionContext property

  1. @protected
FExecutionContext get initExecutionContext

@remark Defined as property to be able to use inside dispose()

Implementation

@protected
FExecutionContext get initExecutionContext {
  if (!(this.initialized || this.initializing)) {
    throw FExceptionInvalidOperation(
        "Wrong operation. Cannot obtain initExecutionContext before call init().");
  }
  return this._initExecutionContext;
}