Meshpocalypse Semantic
    Preparing search index...

    Interface RouteEntry

    Learns optimal paths from successful ACK receipts. Routes expire after a configurable TTL (default 5 minutes). Spec ref: SPEC-004

    interface RouteEntry {
        destination: string;
        hopCount: number;
        learnedAt: number;
        nextHop: string;
        successCount: number;
    }
    Index

    Properties

    destination: string
    hopCount: number
    learnedAt: number
    nextHop: string
    successCount: number