You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exposed Python Worker Extension Interfaces for third-party libraries to integrate into Azure Functions Python Worker.
Third-party library vendors can now implement the abstract classes FuncExtensionBase (apply to specific trigger) and AppExtensionBase (apply to all triggers in function app) to allow Python Worker execute your lifecycle hooks.
Lifecycle hooks that is supported in AppExtensionBase: post_function_load_app_level, pre_invocation_app_level, post_invocation_app_level
Lifecycle hooks that is supported in FuncExtensionBasse: post_function_load, pre_invocation, post_invocation