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

org.jboss.resteasy.spi.AsyncClientResponseProvider Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta5
Show newest version
package org.jboss.resteasy.spi;

import java.util.concurrent.CompletionStage;

/**
 * Used to turn a CompletionStage into another reactive class.
 * Can be used for implementing RxInvokers for other suitable classes.
 */
public interface AsyncClientResponseProvider {

   T fromCompletionStage(CompletionStage completionStage);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy