Interface IProgressCallback

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface IProgressCallback
Defines how to return progress status from a request.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    report(long current, long max)
    How progress updates are handled for this callback
  • Method Details

    • report

      void report(long current, long max)
      How progress updates are handled for this callback
      Parameters:
      current - the current amount of progress
      max - the max amount of progress