Class CachingRDFServiceExecutor.RDFServiceCallable<T>
- java.lang.Object
-
- edu.cornell.mannlib.vitro.webapp.visualization.utilities.CachingRDFServiceExecutor.RDFServiceCallable<T>
-
- Type Parameters:
T-
- All Implemented Interfaces:
Callable<T>
- Enclosing class:
- CachingRDFServiceExecutor<T>
public abstract static class CachingRDFServiceExecutor.RDFServiceCallable<T> extends Object implements Callable<T>
Class to be implemented by user to provide the means of generating the results
-
-
Constructor Summary
Constructors Constructor Description RDFServiceCallable()Default constructorRDFServiceCallable(CachingRDFServiceExecutor.Affinity affinity)Constructor that allows an affinity object to be supplied
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Tcall()Entry point for the background threads, ensuring the right start / cleanup is doneprotected abstract TcallWithService(edu.cornell.mannlib.vitro.webapp.rdfservice.RDFService rdfService)Method for users to implement, to return the results
-
-
-
Constructor Detail
-
RDFServiceCallable
public RDFServiceCallable()
Default constructor
-
RDFServiceCallable
public RDFServiceCallable(CachingRDFServiceExecutor.Affinity affinity)
Constructor that allows an affinity object to be supplied- Parameters:
affinity- Affinity
-
-