aQute.bnd.service.remotelaunch.Slave 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.bnd.service.remotelaunch;
import java.util.List;
public interface Slave {
void sync(String localId, byte[] sha1) throws Exception;
void update(String localId, byte[] contents) throws Exception;
void close() throws Exception;
void launch(List launch) throws Exception;
String prefix() throws Exception;
}