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

com.jslsolucoes.jax.rs.client.se.api.JaxRsApiClientRequestAsync Maven / Gradle / Ivy

There is a newer version: 1.0.32
Show newest version
package com.jslsolucoes.jax.rs.client.se.api;

import java.util.concurrent.CompletableFuture;

import javax.ws.rs.client.Entity;

public interface JaxRsApiClientRequestAsync {

    public CompletableFuture get();

    public CompletableFuture delete();

    public CompletableFuture post(Entity entity);

    public CompletableFuture put(Entity entity);

    public CompletableFuture post(Object object);

    public CompletableFuture put(Object object);

    public JaxRsApiClientRequestAsync retryAttempts(Integer retryAttempts);

    public JaxRsApiClientRequestAsync retryDelay(Integer retryDelay);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy