A mediator type that has an iterations parameter.

interface IMediatorTypeJoinCoefficients {
    blockingItems: number;
    iterations: number;
    persistedItems: number;
    requestTime: number;
}

Hierarchy (view full)

  • IActorTest
  • QueryOperationCost
    • IMediatorTypeJoinCoefficients

Properties

blockingItems: number

An estimation of how many items block the stream. This is used to determine the time the stream is not progressing anymore.

iterations: number

An estimation of how many iterations over items are executed. This is used to determine the CPU cost.

persistedItems: number

An estimation of how many items are stored in memory. This is used to determine the memory cost.

requestTime: number

An estimation of the time to request items from sources. This is used to determine the I/O cost.