Class ChecksumEventStream

java.lang.Object
opennlp.tools.util.AbstractObjectStream<opennlp.tools.ml.model.Event>
opennlp.tools.ml.model.ChecksumEventStream
All Implemented Interfaces:
AutoCloseable, opennlp.tools.util.ObjectStream<opennlp.tools.ml.model.Event>

public class ChecksumEventStream extends opennlp.tools.util.AbstractObjectStream<opennlp.tools.ml.model.Event>
A Checksum-based event stream implementation. Computes the checksum while consuming the event stream. By default, this implementation will use CRC32C for checksum calculations as it can use of CPU-specific acceleration instructions at runtime.
See Also:
  • Constructor Details

    • ChecksumEventStream

      public ChecksumEventStream(opennlp.tools.util.ObjectStream<opennlp.tools.ml.model.Event> eventStream)
      Initializes an ChecksumEventStream.
      Parameters:
      eventStream - The ObjectStream that provides the Event samples.
  • Method Details

    • read

      public opennlp.tools.ml.model.Event read() throws IOException
      Specified by:
      read in interface opennlp.tools.util.ObjectStream<opennlp.tools.ml.model.Event>
      Overrides:
      read in class opennlp.tools.util.AbstractObjectStream<opennlp.tools.ml.model.Event>
      Throws:
      IOException
    • calculateChecksum

      public long calculateChecksum()
      Calculates and returns the (current) checksum.

      Note: This should be called once the underlying stream has been (fully) consumed.

      Returns:
      The calculated checksum as long.