com.networknt.aws.lambda.handler.chain.PooledChainConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lambda-native Show documentation
Show all versions of lambda-native Show documentation
A middleware Lambda function that handles all the cross-cutting concerns for the downstream Lambda function.
The newest version!
package com.networknt.aws.lambda.handler.chain;
public class PooledChainConfig {
private int maxPoolSize;
private int corePoolSize;
private int maxChainSize;
private long keepAliveTime;
private boolean forceSynchronousExecution;
private boolean exitOnMiddlewareInstanceCreationFailure;
public int getCorePoolSize() {
return corePoolSize;
}
public int getMaxPoolSize() {
return maxPoolSize;
}
public long getKeepAliveTime() {
return keepAliveTime;
}
public int getMaxChainSize() {
return maxChainSize;
}
public boolean isForceSynchronousExecution() {
return forceSynchronousExecution;
}
public boolean isExitOnMiddlewareInstanceCreationFailure() {
return exitOnMiddlewareInstanceCreationFailure;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy