List of usage examples for com.liferay.portal.kernel.messaging SerialDestination afterPropertiesSet
@Override
public void afterPropertiesSet()
From source file:com.liferay.sync.servlet.SyncServletContextListener.java
License:Open Source License
protected void registerMessageListener(MessageListener messageListener, String destinationName) { SerialDestination serialDestination = new SerialDestination(); serialDestination.setName(destinationName); serialDestination.afterPropertiesSet(); MessageBusUtil.addDestination(serialDestination); MessageBusUtil.registerMessageListener(destinationName, messageListener); }