Package com.microsoft.graph.core.models
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.
Defines how to return progress status from a request.
-
Method Summary
Modifier and TypeMethodDescriptionvoidreport(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 progressmax- the max amount of progress
-