Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface MapInletMapOutlet<KI, KO, VI, VO, I, O>

Type parameters

  • KI

  • KO

  • VI

  • VO

  • I

  • O

Hierarchy

Implemented by

Index

Methods

bindInput

  • bindInput(input: Outlet<I> | null): void

bindOutput

  • bindOutput(output: Inlet<O>): void

disconnectInputs

  • disconnectInputs(): void

disconnectOutputs

  • disconnectOutputs(): void

filter

get

  • get(): O | undefined
  • get(key: KO): VO | undefined

has

  • has(key: KO): boolean

input

invalidateInput

  • invalidateInput(): void

invalidateInputKey

  • invalidateInputKey(key: KO, effect: KeyEffect): void

invalidateOutput

  • invalidateOutput(): void
  • Marks this Inlet—and the Streamlet to which this Inlet is attached—as having stale state. Invalidating an Inlet will recursively invalidate all streamlets that transitively depend on the state of this Inlet. Invalidating an Inlet does not cause its state to be recomputed. A subsequent reconcileOutput call will reconcile the state of the Inlet.

    Returns void

invalidateOutputKey

  • invalidateOutputKey(key: KI, effect: KeyEffect): void

keyIterator

map

memoize

outlet

outputIterator

reconcileInput

  • reconcileInput(version: number): void

reconcileInputKey

  • reconcileInputKey(key: KO, version: number): void

reconcileOutput

  • reconcileOutput(version: number): void

reconcileOutputKey

  • reconcileOutputKey(key: KI, version: number): void

reduce

  • reduce<U>(identity: U, accumulator: function, combiner: function): Outlet<U>

unbindInput

  • unbindInput(): void

unbindOutput

  • unbindOutput(output: Inlet<O>): void

unbindOutputs

  • unbindOutputs(): void

watch