Interface UpdateSerializer
-
- All Superinterfaces:
org.apache.jena.atlas.lib.Closeable
- All Known Implementing Classes:
UpdateWriter
public interface UpdateSerializer extends org.apache.jena.atlas.lib.CloseableInterface for update serializers which may be registered indirectly with theSerializerRegistryvia aUpdateSerializerFactorythus allowing the customisation of update serialization.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidopen()Must be called prior to passing updates to the serializervoidupdate(java.lang.Iterable<? extends Update> updates)Serializes a sequence of updatesvoidupdate(java.util.Iterator<? extends Update> updateIter)Serializes a sequence of updatesvoidupdate(Update update)Serializes the given update
-
-
-
Method Detail
-
open
void open()
Must be called prior to passing updates to the serializer
-
update
void update(Update update)
Serializes the given update- Parameters:
update- Update
-
update
void update(java.lang.Iterable<? extends Update> updates)
Serializes a sequence of updates- Parameters:
updates- Updates
-
update
void update(java.util.Iterator<? extends Update> updateIter)
Serializes a sequence of updates- Parameters:
updateIter- Updates
-
-