Package oracle.rsi

Interface DroppedRecords<T>


  • public interface DroppedRecords<T>
    A representation of the records that are not inserted into the database successfully during the ingestion.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<T> getDroppedRecords()
      Returns the dropped records that are not inserted into the database successfully.
      java.sql.SQLException getSqlException()
      Returns the SQLException that contains the information of the thrown error.
    • Method Detail

      • getDroppedRecords

        java.util.List<T> getDroppedRecords()
        Returns the dropped records that are not inserted into the database successfully. The maximum size of the returned List is the same as the number specified in ReactiveStreamsIngestion.Builder.rowsPerBatch(int).
        Returns:
        the dropped records
      • getSqlException

        java.sql.SQLException getSqlException()
        Returns the SQLException that contains the information of the thrown error.
        Returns:
        the SQLException