Rest API or Cockpit process deletion can trigger the Deployment callback event "PreUndeployEvent"?

I was running camunda spring boot as microservice(standalone/rest) in clustered mode(homogeneous cluster). Whenever i make rest api call to camunda server, the node in the cluster setup will be load balanced using client side load balancing(Netflix ribbon).

So if i delete the process definition using either REST api or from Cockpit will trigger the Deployment callback event PreUndeployEvent?

@EventListener
public void onPreUndeploy(PreUndeployEvent event) {
  ...
}