Object JobResult.Companion

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Constructor Detail

    • Method Detail

      • failure

         final static JobResult failure(String files)

        Constructs a new JobResult for a job failure and marks the given list of files as persistable.

        Parameters:
        files - List of files that can be persisted to the S3 store.
        Returns:

        A new, failed JobResult.

      • failure

         final static JobResult failure(Iterable<String> files)

        Constructs a new JobResult for a job failure and marks the given list of files as persistable.

        Parameters:
        files - List of files that can be persisted to the S3 store.
        Returns:

        A new, failed JobResult.

      • success

         final static JobResult success(String files)

        Constructs a new JobResult for a job success and marks the given list of files as persistable.

        Parameters:
        files - List of files that can be persisted to the S3 store.
        Returns:

        A new, successful JobResult.

      • success

         final static JobResult success(Iterable<String> files)

        Constructs a new JobResult for a job success and marks the given list of files as persistable.

        Parameters:
        files - List of files that can be persisted to the S3 store.
        Returns:

        A new, successful JobResult.