Instance Method
willBootAsync(_:)
Called when the application is about to boot up. This is the asynchronous version of
willBoot(_:). When adopting the async APIs you should ensure you provide a compatitble implementation for willBoot(_:) as well if you want to support older users still running in a non-async context Note your application must be running in an asynchronous context and initialised with make(_:_:) for this handler to be calledfunc willBootAsync(_ application: Application) async throws
Default Implementations
LifecycleHandler Implementations
willBootAsync(_:)Called when the application is about to boot up. This is the asynchronous version ofwillBoot(_:). When adopting the async APIs you should ensure you provide a compatitble implementation forwillBoot(_:)as well if you want to support older users still running in a non-async context Note your application must be running in an asynchronous context and initialised withmake(_:_:)for this handler to be called