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; private MdmMessageHandler myMdmMessageHandler;
@Autowired @Autowired
private IChannelFactory myChannelFactory; private IChannelFactory myChannelFactory;
@Autowired
private IMdmSettings myMdmSettings;
protected IChannelReceiver myMdmChannel; protected IChannelReceiver myMdmChannel;
@ -49,9 +51,8 @@ public class MdmQueueConsumerLoader {
public void startListeningToMdmChannel() { public void startListeningToMdmChannel() {
if (myMdmChannel == null) { if (myMdmChannel == null) {
ChannelConsumerSettings config = new ChannelConsumerSettings(); ChannelConsumerSettings config = new ChannelConsumerSettings();
//All MDM must be done single-threaded config.setConcurrentConsumers(myMdmSettings.getConcurrentConsumers());
config.setConcurrentConsumers(1);
myMdmChannel = myChannelFactory.getOrCreateReceiver(IMdmSettings.EMPI_CHANNEL_NAME, ResourceModifiedJsonMessage.class, config); myMdmChannel = myChannelFactory.getOrCreateReceiver(IMdmSettings.EMPI_CHANNEL_NAME, ResourceModifiedJsonMessage.class, config);
if (myMdmChannel == null) { if (myMdmChannel == null) {

View File

@ -26,7 +26,6 @@ import java.util.stream.Collectors;
public interface IMdmSettings { public interface IMdmSettings {
String MDM_CHANNEL_NAME = "mdm";
String EMPI_CHANNEL_NAME = "empi"; String EMPI_CHANNEL_NAME = "empi";
// Parallel processing of MDM can result in missed matches. Best to single-thread. // 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; return myConcurrentConsumers;
} }
public MdmSettings setConcurrentConsumers(int theConcurrentConsumers) {
myConcurrentConsumers = theConcurrentConsumers;
return this;
}
public String getScriptText() { public String getScriptText() {
return myScriptText; return myScriptText;
} }