package androidx.work.impl.model; import androidx.lifecycle.LiveData; import androidx.room.Dao; import androidx.room.RawQuery; import androidx.sqlite.db.SupportSQLiteQuery; import androidx.work.impl.model.WorkSpec; import java.util.List; import kotlinx.coroutines.flow.Flow; @Dao /* loaded from: classes.dex */ public interface RawWorkInfoDao { @RawQuery(observedEntities = {WorkSpec.class}) List getWorkInfoPojos(SupportSQLiteQuery supportSQLiteQuery); @RawQuery(observedEntities = {WorkSpec.class}) Flow getWorkInfoPojosFlow(SupportSQLiteQuery supportSQLiteQuery); @RawQuery(observedEntities = {WorkSpec.class}) LiveData> getWorkInfoPojosLiveData(SupportSQLiteQuery supportSQLiteQuery); }