ru.r2cloud.apt.IOCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apt-man Show documentation
Show all versions of apt-man Show documentation
Library for managing APT repository
package ru.r2cloud.apt;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public interface IOCallback {
void load(InputStream is) throws IOException;
void save(OutputStream os) throws IOException;
}