com.gojek.de.stencil.http.RemoteFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stencil Show documentation
Show all versions of stencil Show documentation
Library to pull latest proto descriptors from a remote server
package com.gojek.de.stencil.http;
import java.io.IOException;
public interface RemoteFile {
byte[] fetch(String url) throws IOException;
void close() throws IOException;
}