Documentation
    Preparing search index...

    Interface MessageChannelOptions

    interface MessageChannelOptions {
        causalHistorySize?: number;
        enableRepair?: boolean;
        possibleAcksThreshold?: number;
        repairConfig?: RepairConfig;
        timeoutForLostMessagesMs?: number;
    }
    Index

    Properties

    causalHistorySize?: number
    enableRepair?: boolean

    Whether to enable SDS-R repair protocol.

    true
    
    possibleAcksThreshold?: number

    How many possible acks does it take to consider it a definitive ack.

    repairConfig?: RepairConfig

    SDS-R repair configuration. Only used if enableRepair is true.

    timeoutForLostMessagesMs?: number

    The time in milliseconds after which a message dependencies that could not be resolved is marked as irretrievable. Disabled if undefined or 0.

    undefined because it is coupled to processTask calls frequency