Interface Forwarder

Logical forwarder.

interface Forwarder {
    addFace: ((face, attributes?) => FwFace);
    close: (() => void);
    faces: ReadonlySet<FwFace>;
    nodeNames: Name[];
}

Hierarchy

  • TypedEventTarget<EventMap>
    • Forwarder

Properties

addFace: ((face, attributes?) => FwFace)

Add a logical face to the logical forwarder.

Type declaration

close: (() => void)

Cancel timers and other I/O resources. This instance should not be used after this operation.

Type declaration

    • (): void
    • Returns void

faces: ReadonlySet<FwFace>

Logical faces.

nodeNames: Name[]

Node names, used in forwarding hint processing.

Generated using TypeDoc