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

me.ccampo.spring.aws.lambda.SpringVoidRequestHandler Maven / Gradle / Ivy

Go to download

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