Stay organized with collections Save and categorize content based on your preferences.

WorkManager.UpdateResult

public enum WorkManager.UpdateResult


An enumeration of results for updateWork method.

Summary

Enum Values

APPLIED_FOR_NEXT_RUN

An update was successfully applied, but the worker being updated was running.

APPLIED_IMMEDIATELY

An update was successfully applied immediately, meaning the updated work wasn't currently running in the moment of the request.

NOT_APPLIED

An update wasn't applied, because Worker has already finished.

Public methods

static WorkManager.UpdateResult

Returns the enum constant of this type with the specified name.

static WorkManager.UpdateResult[]

Returns an array containing the constants of this enum type, in the order they're declared.

Enum Values

APPLIED_FOR_NEXT_RUN

WorkManager.UpdateResult WorkManager.UpdateResult.APPLIED_FOR_NEXT_RUN

An update was successfully applied, but the worker being updated was running. This run isn't interrupted and will continue to rely on previous state of the request, e.g. using old constraints, tags etc. However, on the next run, e.g. retry of one-time Worker or another iteration of periodic worker, the new worker specification. will be used.

APPLIED_IMMEDIATELY

WorkManager.UpdateResult WorkManager.UpdateResult.APPLIED_IMMEDIATELY

An update was successfully applied immediately, meaning the updated work wasn't currently running in the moment of the request. See APPLIED_FOR_NEXT_RUN for the case of running worker.

NOT_APPLIED

WorkManager.UpdateResult WorkManager.UpdateResult.NOT_APPLIED

An update wasn't applied, because Worker has already finished.

Public methods

valueOf

public static WorkManager.UpdateResult valueOf(String name)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Returns
WorkManager.UpdateResult

the enum constant with the specified name

Throws
java.lang.IllegalArgumentException java.lang.IllegalArgumentException

if this enum type has no constant with the specified name

values

public static WorkManager.UpdateResult[] values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.

Returns
WorkManager.UpdateResult[]

an array containing the constants of this enum type, in the order they're declared