
com.elypia.elypiai.restutils.impl.IRestAction 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.io.IOException;
import java.util.function.Consumer;
public interface IRestAction {
Consumer DEFAULT_FAILURE = Throwable::printStackTrace;
void queue();
void queue(Consumer success);
void queue(Consumer success, Consumer ex);
T complete() throws IOException;
void cancel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy