![JAR search and dependency download from the Maven repository](/logo.png)
me.ccampo.spring.aws.lambda.SpringVoidRequestHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-aws-lambda Show documentation
Show all versions of spring-aws-lambda Show documentation
A Java library to enable core Spring Framework dependency injection support and eliminate some boilerplate around AWS Lambda.
The newest version!
package me.ccampo.spring.aws.lambda;
import com.amazonaws.services.lambda.runtime.Context;
/**
* Exactly the same as {@link SpringRequestHandler}, except with no output (void).
*/
public abstract class SpringVoidRequestHandler extends SpringRequestHandler {
@Override
public Void handleRequest(final I input, final Context context) {
super.handleRequest(input, context);
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy