Package io.micronaut.starter.feature.aws
Class AwsLambdaSnapstart
java.lang.Object
io.micronaut.starter.feature.aws.AwsLambdaSnapstart
- All Implemented Interfaces:
io.micronaut.core.naming.Described,io.micronaut.core.naming.Named,io.micronaut.core.order.Ordered,Feature
@Requires(property="micronaut.starter.feature.snapstart.enabled",
value="true",
defaultValue="true")
@Singleton
public class AwsLambdaSnapstart
extends Object
implements Feature
Feature for enabling AWS Lambda SnapStart functionality.
SnapStart improves cold start performance by initializing the Lambda function ahead of time on supported CPU architectures.
-
Field Summary
Fields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@NonNull StringgetName()The name of the feature.getThirdPartyDocumentation(GeneratorContext generatorContext) @NonNull StringgetTitle()booleanSome features should not be visible to the user because they are a common parent of other selectable features, or they should always be applied, or any other reason.booleansupports(@NonNull CpuArchitecture cpuArchitecture) Determines if the feature supports the given CPU architecture.booleanThis method must be implemented to ensure it is only selectable for the desired application types.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.micronaut.core.naming.Described
getDescriptionMethods inherited from interface io.micronaut.projectgen.core.feature.Feature
apply, getCategory, getDescription, getFrameworkDocumentation, getOrder, isCommunity, isPreview, processSelectedFeatures
-
Constructor Details
-
AwsLambdaSnapstart
public AwsLambdaSnapstart()
-
-
Method Details
-
getName
Description copied from interface:FeatureThe name of the feature. It must be unique. -
getTitle
-
isVisible
public boolean isVisible()Description copied from interface:FeatureSome features should not be visible to the user because they are a common parent of other selectable features, or they should always be applied, or any other reason. -
getThirdPartyDocumentation
- Specified by:
getThirdPartyDocumentationin interfaceFeature- Parameters:
generatorContext- Generator Context- Returns:
- Returns a link to third party. E.g. https://hazelcast.org
-
supports
Determines if the feature supports the given CPU architecture.- Parameters:
cpuArchitecture- The CPU architecture to check support for- Returns:
- true if supported, false otherwise
-
supports
Description copied from interface:FeatureThis method must be implemented to ensure it is only selectable for the desired application types. This method is not used for determining if a default feature should be applied.
-