Skip to content

Commit

Permalink
ARTEMIS-3690 add missing getters/setters to RA ConnectionFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
pkerner authored and jbertram committed Feb 28, 2022
1 parent 82e82cf commit 72573d5
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,22 @@ public void setHA(Boolean ha) {
mcfProperties.setHA(ha);
}

public Boolean isCompressLargeMessage() {
return mcfProperties.isCompressLargeMessage();
}

public void setCompressLargeMessage(final Boolean compressLargeMessage) {
mcfProperties.setCompressLargeMessage(compressLargeMessage);
}

public Integer getInitialConnectAttempts() {
return mcfProperties.getInitialConnectAttempts();
}

public void setInitialConnectAttempts(final Integer initialConnectAttempts) {
mcfProperties.setInitialConnectAttempts(initialConnectAttempts);
}


/**
* Get the useTryLock.
Expand Down

0 comments on commit 72573d5

Please sign in to comment.