org.daisy.pipeline.client.http.WSCallbackHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clientlib-java-httpclient Show documentation
Show all versions of clientlib-java-httpclient Show documentation
HTTP Client Implementation for the Java Client Library.
package org.daisy.pipeline.client.http;
import java.util.List;
import org.daisy.pipeline.client.models.Message;
import org.daisy.pipeline.client.models.Job.Status;
public interface WSCallbackHandler {
/**
* Handle job message callbacks.
* @param jobMessages
*/
public void jobMessages(List jobMessages);
/**
* Handle job status update callbacks.
* @param jobStatus
*/
public void jobStatus(Status jobStatus);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy