Class JmsPoolConnectionFactoryProperties
java.lang.Object
org.springframework.boot.autoconfigure.jms.JmsPoolConnectionFactoryProperties
Configuration properties for connection factory pooling.
- Since:
- 2.1.0
- Author:
- Stephane Nicoll
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
int
boolean
boolean
boolean
void
setBlockIfFull
(boolean blockIfFull) void
setBlockIfFullTimeout
(Duration blockIfFullTimeout) void
setEnabled
(boolean enabled) void
setIdleTimeout
(Duration idleTimeout) void
setMaxConnections
(int maxConnections) void
setMaxSessionsPerConnection
(int maxSessionsPerConnection) void
setTimeBetweenExpirationCheck
(Duration timeBetweenExpirationCheck) void
setUseAnonymousProducers
(boolean useAnonymousProducers)
-
Constructor Details
-
JmsPoolConnectionFactoryProperties
public JmsPoolConnectionFactoryProperties()
-
-
Method Details
-
isEnabled
public boolean isEnabled() -
setEnabled
public void setEnabled(boolean enabled) -
isBlockIfFull
public boolean isBlockIfFull() -
setBlockIfFull
public void setBlockIfFull(boolean blockIfFull) -
getBlockIfFullTimeout
-
setBlockIfFullTimeout
-
getIdleTimeout
-
setIdleTimeout
-
getMaxConnections
public int getMaxConnections() -
setMaxConnections
public void setMaxConnections(int maxConnections) -
getMaxSessionsPerConnection
public int getMaxSessionsPerConnection() -
setMaxSessionsPerConnection
public void setMaxSessionsPerConnection(int maxSessionsPerConnection) -
getTimeBetweenExpirationCheck
-
setTimeBetweenExpirationCheck
-
isUseAnonymousProducers
public boolean isUseAnonymousProducers() -
setUseAnonymousProducers
public void setUseAnonymousProducers(boolean useAnonymousProducers)
-