aQute.libg.remote.Source Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bndlib Show documentation
Show all versions of biz.aQute.bndlib Show documentation
bndlib: A Swiss Army Knife for OSGi
package aQute.libg.remote;
import java.io.IOException;
public interface Source {
byte[] getData(String id) throws Exception;
void event(Event e, Area area) throws Exception;
void output(String areaId, CharSequence text, boolean err) throws IOException;
}