All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.elypia.elypiai.restutils.impl.IRestAction Maven / Gradle / Ivy

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