CALL "C$PRELOAD" USING classesContainer GIVING returnCode |
classesContainer | PIC X(n) | Specifies the location of the class files to be preloaded. It can be either a folder of classes or one jar file name. If a folder is passed, • The folder must be available either in the CLASSPATH or in the iscobol.code_prefix. If a jar file file is passed, • Use only the name of the file. If you include the path information, an error will be returned. • The CLASSPATH is parsed to find the jar, iscobol.code_prefix is not considered. Both the path and the name of the jar must be in the CLASSPATH. |
0 | Error occurred. The classes container is either not found or invalid. |
1 | The classes are going to be preloaded. |
2 | The preloading is in progress. |
3 | The classes have been successfully preloaded. |
78 cprel-error value 0. 78 cprel-starting value 1. 78 cprel-in-progress value 2. 78 cprel-completed value 3. |
call "c$preload" using "myApp.jar". |