Record Class AotClassLoadingExamples.AotClassLoadingWorkflowResult

java.lang.Object
java.lang.Record
net.jrodolfo.java_evolution.java24.aot_class_loading.AotClassLoadingExamples.AotClassLoadingWorkflowResult
Record Components:
sourceFile - generated source file
classesDirectory - compiled classes directory
jarFile - generated application JAR
configurationFile - generated AOT configuration file
cacheFile - generated AOT cache file
configurationSize - size of the AOT configuration file in bytes
cacheSize - size of the AOT cache file in bytes
compilation - result of the javac invocation
packaging - result of the jar invocation
configurationRecording - result of the -XX:AOTMode=record run
cacheCreation - result of the -XX:AOTMode=create run
cachedRun - result of the -XX:AOTCache application run
Enclosing class:
AotClassLoadingExamples

public static record AotClassLoadingExamples.AotClassLoadingWorkflowResult(Path sourceFile, Path classesDirectory, Path jarFile, Path configurationFile, Path cacheFile, long configurationSize, long cacheSize, AotClassLoadingExamples.CommandResult compilation, AotClassLoadingExamples.CommandResult packaging, AotClassLoadingExamples.CommandResult configurationRecording, AotClassLoadingExamples.CommandResult cacheCreation, AotClassLoadingExamples.CommandResult cachedRun) extends Record
Result of the complete Java 24 AOT class-loading workflow.