use of org.jboss.modcluster.container.Context in project wildfly by wildfly.
the class UndertowEventHandlerAdapter method onDeploymentStop.
@Override
public synchronized void onDeploymentStop(Deployment deployment, Host host) {
Context context = this.createContext(deployment, host);
this.eventHandler.getValue().stop(context);
// TODO break into onDeploymentRemove once implemented in Undertow
this.eventHandler.getValue().remove(context);
contexts.remove(context);
}
Aggregations