com.pushtorefresh.storio.operations.PreparedWriteOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Modern API for SQLiteDatabase and ContentResolver
package com.pushtorefresh.storio.operations;
import android.support.annotation.CheckResult;
import android.support.annotation.NonNull;
import rx.Completable;
/**
* Common API of prepared write operations
*
* @param type of result
*/
public interface PreparedWriteOperation extends PreparedOperation {
@NonNull
@CheckResult
Completable asRxCompletable();
}