mingo
    Preparing search index...

    Enumeration ProcessingMode

    Enum representing the processing modes for handling input and output documents. This determines whether cloning is applied to maintain immutability or ensure distinct object references.

    Index

    Enumeration Members

    CLONE_ALL: 3

    Clone both input and output documents. Combines CLONE_INPUT and CLONE_OUTPUT.

    CLONE_INPUT: 1

    Clone input documents to maintain immutability of the original input.

    CLONE_OFF: 0

    Do not clone inputs or outputs. Resulting documents may share references. This is the default mode.

    CLONE_OUTPUT: 2

    Clone output documents to ensure distinct objects without shared references.