de.gesellix.docker.response.Reader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-engine Show documentation
Show all versions of docker-engine Show documentation
Bare HTTP client for the Docker engine api
The newest version!
package de.gesellix.docker.response;
import java.io.IOException;
public interface Reader {
T readNext(Class type) throws IOException;
boolean hasNext() throws IOException;
}