You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
364 B
Java

package eu.dnetlib.enabling.hcm.sn;
import eu.dnetlib.enabling.is.sn.rmi.ISSNException;
/**
* This component takes care of subscribing the MSRO service to interesting events.
*
* @author marko
*
*/
public interface HCMSubscriber {
/**
* performs the subscription.
* @throws ISSNException could happen
*/
void subscribeAll() throws ISSNException;
}