public @interface

HiltWorker

implements java.lang.annotation.Annotation

 androidx.hilt.work.HiltWorker

Gradle dependencies

compile group: 'androidx.hilt', name: 'hilt-common', version: '1.0.0'

  • groupId: androidx.hilt
  • artifactId: hilt-common
  • version: 1.0.0

Artifact androidx.hilt:hilt-common:1.0.0 it located at Google repository (https://maven.google.com/)

Overview

A type annotation that identifies a ListenableWorker's constructor for injection.

The Worker will be available for creation by the HiltWorkerFactory that should be set in WorkManager's configuration via Configuration.Builder.setWorkerFactory(WorkerFactory). The HiltWorker containing a constructor annotated with AssistedInject will have its dependencies defined in the constructor parameters injected by Dagger's Hilt.

Example:

 @HiltWorker
 public class UploadWorker extends Worker {
     @AssistedInject
     public UploadWorker(@Assisted Context context, @Assisted WorkerParameters params,
             HttpClient httpClient) {
         // ...
     }
 }
 
 @HiltAndroidApp
 public class MyApplication extends Application implements Configuration.Provider {
     @Inject HiltWorkerFactory workerFactory;

     @Override
     public Configuration getWorkManagerConfiguration() {
         return Configuration.Builder()
                 .setWorkerFactory(workerFactory)
                 .build();
     }
 }
 

Only one constructor in the Worker must be annotated with AssistedInject. The constructor must define parameters for a Assisted-annotated Context and a Assisted-annotated WorkerParameters along with any other dependencies. Both the Context and WorkerParameters must not be a type param of nor Lazy and must not be qualified.

Only dependencies available in the SingletonComponent can be injected into the Worker.

Summary

Source

/*
 * Copyright 2020 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.hilt.work;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import dagger.hilt.GeneratesRootInput;

/**
 * A type annotation that identifies a {@link androidx.work.ListenableWorker}'s constructor for
 * injection.
 * <p>
 * The {@code Worker} will be available for creation by the
 * {@link androidx.hilt.work.HiltWorkerFactory} that should be set in {@code WorkManager}'s
 * configuration via
 * {@link androidx.work.Configuration.Builder#setWorkerFactory(androidx.work.WorkerFactory)}.
 * The {@code HiltWorker} containing a constructor annotated with
 * <a href="https://dagger.dev/api/latest/dagger/assisted/AssistedInject">AssistedInject</a> will
 * have its dependencies defined in the constructor parameters injected by Dagger's Hilt.
 * <p>
 * Example:
 * <pre>
 * &#64;HiltWorker
 * public class UploadWorker extends Worker {
 *     &#64;AssistedInject
 *     public UploadWorker(&#64;Assisted Context context, &#64;Assisted WorkerParameters params,
 *             HttpClient httpClient) {
 *         // ...
 *     }
 * }
 * </pre>
 * <pre>
 * &#64;HiltAndroidApp
 * public class MyApplication extends Application implements Configuration.Provider {
 *     &#64;Inject HiltWorkerFactory workerFactory;
 *
 *     &#64;Override
 *     public Configuration getWorkManagerConfiguration() {
 *         return Configuration.Builder()
 *                 .setWorkerFactory(workerFactory)
 *                 .build();
 *     }
 * }
 * </pre>
 * <p>
 * Only one constructor in the {@code Worker} must be annotated with
 * <a href="https://dagger.dev/api/latest/dagger/assisted/AssistedInject">AssistedInject</a>.
 * The constructor must define parameters for a
 * <a href="https://dagger.dev/api/latest/dagger/assisted/Assisted">Assisted</a>-annotated
 * {@code Context} and a
 * <a href="https://dagger.dev/api/latest/dagger/assisted/Assisted">Assisted</a>-annotated
 * {@code WorkerParameters} along with any other dependencies. Both the {@code Context} and
 * {@code WorkerParameters} must not be a type param of {@link javax.inject.Provider} nor
 * <a href="https://dagger.dev/api/latest/dagger/Lazy">Lazy</a> and must not be qualified.
 * <p>
 * Only dependencies available in the
 * <a href="https://dagger.dev/api/latest/dagger/hilt/components/SingletonComponent">SingletonComponent</a>
 * can be injected into the {@code Worker}.
 */
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
@GeneratesRootInput
public @interface HiltWorker {
}