
org.jpedal.external.RemoteTracker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of base-microservice-example Show documentation
Show all versions of base-microservice-example Show documentation
Provides the shared classes used by IDRsolutions microservice examples.
The newest version!
package org.jpedal.external;
import java.rmi.Remote;
import java.rmi.RemoteException;
/**
* The RemoteTracker interface allows monitoring of page decode progress from another application using java RMI.
*/
@SuppressWarnings("ALL")
public interface RemoteTracker extends Remote {
void finishedPageDecoding(final String uuid, final int rawPage) throws RemoteException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy