org.dc.riot.lol.rx.service.interfaces.Completer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lol-api-rxjava Show documentation
Show all versions of lol-api-rxjava Show documentation
Service library for League of Legends API
package org.dc.riot.lol.rx.service.interfaces;
/**
* Some fields come back empty from the server,
* this interface allows for some obvious fields to be
* filled out.
*
* @author Dc
* @since 1.0.0
*
* @param
*/
@FunctionalInterface
interface Completer {
T fill(T t);
}