Remove mutator
This commit is contained in:
parent
aa37884b2e
commit
c572575412
|
@ -42,6 +42,8 @@ public class MdmQueueConsumerLoader {
|
|||
private MdmMessageHandler myMdmMessageHandler;
|
||||
@Autowired
|
||||
private IChannelFactory myChannelFactory;
|
||||
@Autowired
|
||||
private IMdmSettings myMdmSettings;
|
||||
|
||||
protected IChannelReceiver myMdmChannel;
|
||||
|
||||
|
@ -49,9 +51,8 @@ public class MdmQueueConsumerLoader {
|
|||
public void startListeningToMdmChannel() {
|
||||
if (myMdmChannel == null) {
|
||||
ChannelConsumerSettings config = new ChannelConsumerSettings();
|
||||
|
||||
//All MDM must be done single-threaded
|
||||
config.setConcurrentConsumers(1);
|
||||
|
||||
config.setConcurrentConsumers(myMdmSettings.getConcurrentConsumers());
|
||||
|
||||
myMdmChannel = myChannelFactory.getOrCreateReceiver(IMdmSettings.EMPI_CHANNEL_NAME, ResourceModifiedJsonMessage.class, config);
|
||||
if (myMdmChannel == null) {
|
||||
|
|
|
@ -26,7 +26,6 @@ import java.util.stream.Collectors;
|
|||
|
||||
public interface IMdmSettings {
|
||||
|
||||
String MDM_CHANNEL_NAME = "mdm";
|
||||
String EMPI_CHANNEL_NAME = "empi";
|
||||
|
||||
// Parallel processing of MDM can result in missed matches. Best to single-thread.
|
||||
|
|
|
@ -67,11 +67,6 @@ public class MdmSettings implements IMdmSettings {
|
|||
return myConcurrentConsumers;
|
||||
}
|
||||
|
||||
public MdmSettings setConcurrentConsumers(int theConcurrentConsumers) {
|
||||
myConcurrentConsumers = theConcurrentConsumers;
|
||||
return this;
|
||||
}
|
||||
|
||||
public String getScriptText() {
|
||||
return myScriptText;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue