saker.standard Documentation TaskDoc JavaDoc Packages
public interface PrepareDirectoryWorkerTaskOutput
Output of the directory preparation task.

The output provides access to information about the output contents.

Clients shouldn't implement this interface.

saker.standard 0.8.4
Methods
public NavigableSet<SakerPath>
Gets the set of file paths that are placed in the output directory.
public SakerPath
Gets the path to the output directory.
public NavigableSet<SakerPath>
Gets the set of paths for the output files and directories.
Gets the set of file paths that are placed in the output directory.

Note that the result contains the paths only to the output files, but not the directories. Use getPaths() if you want the paths to all output files and directories.

A set of absolute execution paths of the files.
public abstract SakerPath getOutputPath()
Gets the path to the output directory.
The absolute execution path.
public abstract NavigableSet<SakerPath> getPaths()
Gets the set of paths for the output files and directories.

The returned set contains the paths to all files and directories placed in the output directory.

A set of absolute execution paths.