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

org.bcos.web3j.protocol.Web3jService Maven / Gradle / Ivy

There is a newer version: 2.6.6
Show newest version
package org.bcos.web3j.protocol;

import java.io.IOException;
import java.util.concurrent.CompletableFuture;

import org.bcos.web3j.protocol.core.Request;
import org.bcos.web3j.protocol.core.Response;

/**
 * Services API.
 */
public interface Web3jService {
     T send(
            Request request, Class responseType) throws IOException;

     CompletableFuture sendAsync(
            Request request, Class responseType);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy