All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.networknt.aws.lambda.handler.chain.PooledChainConfig Maven / Gradle / Ivy

Go to download

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