Interface RecordSerializerFactory

    • Field Detail

      • LATEST_SERIALIZER_VERSION

        static final int LATEST_SERIALIZER_VERSION
        Latest serializer version to use.
        See Also:
        Constant Field Values
    • Method Detail

      • writePointer

        RecordSerializerFactory writePointer​(boolean writePointer)
        TODO: This flag was added under IGNITE-6029, but still unused. Should be either handled or removed.
        Parameters:
        writePointer - Write pointer flag.
      • marshalledMode

        RecordSerializerFactory marshalledMode​(boolean marshalledMode)
        If marshalledMode is on, created serializer will read MarshalledRecord with raw binary data instead of actual record. Useful for copying binary data from WAL.
        Parameters:
        marshalledMode - Marshalled mode.
      • skipPositionCheck

        RecordSerializerFactory skipPositionCheck​(boolean skipPositionCheck)
        If skipPositionCheck is true, created serializer won't check that actual position of record in file is equal to position in saved record's WALPointer. Must be true if we are reading from compacted WAL segment.
        Parameters:
        skipPositionCheck - Skip position check.