completeRefresh method
Completes the refresh process for the given
ConfigurableListablePodFactory
.
This step finalizes the pod factory initialization, ensuring that all post-processors have been executed, all metadata validated, and the context is marked as "refreshed".
Override to perform custom logic after the container has successfully completed initialization.
Implementation
@protected
Future<void> completeRefresh() async {
_lifecycleProcessor?.onRefresh();
return Future.value();
}