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

com.amazonaws.services.lambda.crac.Context Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
/*
 *  Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 */

package com.amazonaws.services.lambda.crac;

public abstract class Context implements Resource {

    protected Context() {
    }

    @Override
    public abstract void beforeCheckpoint(Context context)
            throws CheckpointException;

    @Override
    public abstract void afterRestore(Context context)
            throws RestoreException;

    public abstract void register(R resource);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy