org.openprovenance.prov.interop.DeserializerFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov-interop Show documentation
Show all versions of prov-interop Show documentation
A package aimed at systematic testing convertibility of prov representations.
package org.openprovenance.prov.interop;
/* Functional interface, without argument, returning a deserializer function. This is implemented as a functional interface, since soem serialization method are thread specific, and therefore, need to be called in the current thread serializing the document. */
public interface DeserializerFunction {
org.openprovenance.prov.model.ProvDeserialiser apply();
}