super.stop()
477478479480481482483484485486487
public Destination removeDestination(String id) { Destination destination = (Destination)destinations.get(id); if (destination != null) { destination.stop(); destinations.remove(id); getMessageBroker().unregisterDestination(id); } return destination; }
665666667668669670671672673
private void stopDestinations() { for (Iterator iter = destinations.values().iterator(); iter.hasNext();) { Destination destination = (Destination)iter.next(); destination.stop(); } } }
476477478479480481482483484485486
664665666667668669670671672