*/
protected boolean isBeingInstalledAsynchronously(ControllerContext ctx)
{
if (controller instanceof AsynchronousController)
{
AsynchronousController asynchronousController = AsynchronousController.class.cast(controller);
return asynchronousController.isAsynchronousInstallInProgress(ctx);
}
return false;
}