Share via


PurgeResult Class

  • java.lang.Object
    • com.microsoft.durabletask.PurgeResult

public final class PurgeResult

Class representing the results of an orchestration state purge operation.

Orchestration state can be purged using any of the DurableTaskClient#purgeInstances method overloads.

Method Summary

Modifier and Type Method and Description
int getDeletedInstanceCount()

Gets the number of purged orchestration instances.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Method Details

getDeletedInstanceCount

public int getDeletedInstanceCount()

Gets the number of purged orchestration instances.

Returns:

the number of purged orchestration instances

Applies to