Interface SMFParserEventsType

    • Method Detail

      • onStart

        void onStart()
        Parsing has started.
      • onVersionReceived

        java.util.Optional<SMFParserEventsHeaderType> onVersionReceived​(SMFFormatVersion version)
        The file format version has been successfully parsed. The functions should return a receiver for the header information if parsing should continue, or Optional.empty() if parsing should stop.
        Parameters:
        version - The file format version
        Returns:
        A receiver for the header, if any
      • onFinish

        void onFinish()
        Parsing has finished. This method will be called unconditionally when the parser is closed, regardless of any errors encountered.