Skip to content

Commit

Permalink
Merge branch '3.1.x' into 3.2.x
Browse files Browse the repository at this point in the history
Closes gh-39078
  • Loading branch information
mhalbritter committed Jan 10, 2024
2 parents 45d2c3b + fd10c69 commit 793801b
Showing 1 changed file with 13 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
* @author Eddú Meléndez
* @author Rafael Carvalho
* @author Scott Frederick
* @author Lasse Wulff
* @since 1.0.0
*/
@ConfigurationProperties(prefix = "spring.rabbitmq")
Expand Down Expand Up @@ -718,23 +719,15 @@ public StreamContainer getStream() {

public abstract static class BaseContainer {

}

public abstract static class AmqpContainer extends BaseContainer {

/**
* Whether to start the container automatically on startup.
*/
private boolean autoStartup = true;

public boolean isAutoStartup() {
return this.autoStartup;
}

public void setAutoStartup(boolean autoStartup) {
this.autoStartup = autoStartup;
}

}

public abstract static class AmqpContainer extends BaseContainer {

/**
* Acknowledge mode of container.
*/
Expand Down Expand Up @@ -773,6 +766,14 @@ public abstract static class AmqpContainer extends BaseContainer {
*/
private final ListenerRetry retry = new ListenerRetry();

public boolean isAutoStartup() {
return this.autoStartup;
}

public void setAutoStartup(boolean autoStartup) {
this.autoStartup = autoStartup;
}

public AcknowledgeMode getAcknowledgeMode() {
return this.acknowledgeMode;
}
Expand Down

0 comments on commit 793801b

Please sign in to comment.