
com.elypia.elypiai.restutils.impl.AbstractRestAction 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
Wrappers for many APIs available online from various services.
The newest version!
package com.elypia.elypiai.restutils.impl;
import java.util.function.Consumer;
public abstract class AbstractRestAction implements IRestAction {
@Override
public void queue() {
queue(null);
}
@Override
public void queue(Consumer success) {
queue(success, DEFAULT_FAILURE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy