
com.nytimes.android.external.store3.util.NoKeyParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of store3 Show documentation
Show all versions of store3 Show documentation
Store3 is built with RxJava2
package com.nytimes.android.external.store3.util;
import com.nytimes.android.external.store3.base.Parser;
import javax.annotation.Nonnull;
import io.reactivex.annotations.NonNull;
public class NoKeyParser implements KeyParser {
private final Parser parser;
public NoKeyParser(@Nonnull Parser parser) {
this.parser = parser;
}
@Override
public Parsed apply(@NonNull Key key, @NonNull Raw raw) throws ParserException {
return parser.apply(raw);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy