Interface EntityWriter<T,S>

Type Parameters:
T - the entity type the converter can handle
S - the store specific sink the converter is able to write to
All Known Subinterfaces:
EntityConverter<E,P,T,S>

public interface EntityWriter<T,S>
Interface to write objects into store specific sinks.
Author:
Oliver Gierke
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    write(T source, S sink)
    Writes the given source object into a store specific sink.
  • Method Details

    • write

      void write(T source, S sink)
      Writes the given source object into a store specific sink.
      Parameters:
      source - the source to create an object of the given type from.
      sink - the sink to write into.