public interface

ProgressUpdater

 androidx.work.ProgressUpdater

Subclasses:

TestProgressUpdater, RemoteProgressUpdater, WorkProgressUpdater

Gradle dependencies

compile group: 'androidx.work', name: 'work-runtime', version: '2.8.0-alpha02'

  • groupId: androidx.work
  • artifactId: work-runtime
  • version: 2.8.0-alpha02

Artifact androidx.work:work-runtime:2.8.0-alpha02 it located at Google repository (https://maven.google.com/)

Overview

Updates progress for a ListenableWorker.

Summary

Methods
public <any>updateProgress(Context context, java.util.UUID id, Data data)

Methods

public <any> updateProgress(Context context, java.util.UUID id, Data data)

Parameters:

context: The application .
id: The java.util.UUID identifying the ListenableWorker
data: The progress Data

Returns:

The which resolves after progress is persisted.

Cancelling this does not cancel the writes to the database to update progress.

Source

/*
 * Copyright 2019 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.work;

import android.content.Context;

import androidx.annotation.NonNull;

import com.google.common.util.concurrent.ListenableFuture;

import java.util.UUID;

/**
 * Updates progress for a {@link androidx.work.ListenableWorker}.
 */
public interface ProgressUpdater {

    /**
     * @param context The application {@link Context}.
     * @param id      The {@link UUID} identifying the {@link ListenableWorker}
     * @param data    The progress {@link Data}
     * @return The {@link ListenableFuture} which resolves after progress is persisted.
     * <p>
     * Cancelling this {@link ListenableFuture} does not cancel the writes to the database
     * to update progress.
     */
    @NonNull
    ListenableFuture<Void> updateProgress(
            @NonNull Context context,
            @NonNull UUID id,
            @NonNull Data data);
}