Remove mutator

This commit is contained in:
Tadgh 2021-01-25 09:55:31 -05:00
parent aa37884b2e
commit c572575412
3 changed files with 4 additions and 9 deletions

View File

@ -42,6 +42,8 @@ public class MdmQueueConsumerLoader {
private MdmMessageHandler myMdmMessageHandler;
@Autowired
private IChannelFactory myChannelFactory;
@Autowired
private IMdmSettings myMdmSettings;
protected IChannelReceiver myMdmChannel;
@ -50,8 +52,7 @@ public class MdmQueueConsumerLoader {
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) {

View File

@ -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.

View File

@ -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;
}