@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface IRpcLanesTopology<TBindings, TProfiles>

    RPC-lane topology declaration used to connect lanes, profiles, and communicators.

    interface IRpcLanesTopology<
        TBindings extends
            readonly IRpcLaneTopologyBinding[] = readonly IRpcLaneTopologyBinding[],
        TProfiles extends
            Record<string, IRpcLaneTopologyProfile<TBindings[number]["lane"]>> = Record<
            string,
            IRpcLaneTopologyProfile<TBindings[number]["lane"]>,
        >,
    > {
        bindings: TBindings;
        profiles: TProfiles;
    }

    Type Parameters

    Index

    Properties

    Properties

    bindings: TBindings
    profiles: TProfiles