
org.yamcs.sle.provider.ServiceInitializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsle Show documentation
Show all versions of jsle Show documentation
Java implementation for the SLE (Space Link Extension) protocol.
package org.yamcs.sle.provider;
import org.yamcs.sle.Constants.ApplicationIdentifier;
public interface ServiceInitializer {
ServiceInitResult getServiceInstance(String initiatorId, String responderPortId, ApplicationIdentifier appId,
String serviceInstanceIdentifier);
public static class ServiceInitResult {
public boolean success;
//the name is used for logging
public String name;
//if success = false, gives the diagnostic to send in the bind return
public int diagnostic;
public SleService sleService;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy