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

com.heroku.api.connection.Connection Maven / Gradle / Ivy

There is a newer version: 0.46
Show newest version
package com.heroku.api.connection;

import com.heroku.api.request.Request;

/**
 * Connection manager for connecting to the Heroku API.
 *
 * @author Naaman Newbold
 */
public interface Connection {

     T execute(Request request);

    String getApiKey();

    void close();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy