
com.amazonaws.services.lambda.crac.Context Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-lambda-java-runtime-interface-client Show documentation
Show all versions of aws-lambda-java-runtime-interface-client Show documentation
The AWS Lambda Java Runtime Interface Client implements the Lambda programming model for Java
The newest version!
/*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package com.amazonaws.services.lambda.crac;
public abstract class Context implements Resource {
protected Context() {
}
@Override
public abstract void beforeCheckpoint(Context extends Resource> context)
throws CheckpointException;
@Override
public abstract void afterRestore(Context extends Resource> context)
throws RestoreException;
public abstract void register(R resource);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy