ShareConfig

@mvuijs/core / rx / ShareConfig

ShareConfig<T> #

Type parameters #

  • T

Properties #

connector? #

Function

Type declaration #

The MulticastStream object to use as the base. You will most likely not use this much and instead use the small wrapper function shareReplay .

Signature #
(): MulticastStream<T>;
Returns #

MulticastStream <T>

Defined in: packages/core/src/rx/operators/share.ts:10

resetOnComplete? #

boolean

Wether to reset the stream when the original stream completed.

Defined in: packages/core/src/rx/operators/share.ts:18

resetOnError? #

boolean

Wether to reset the stream when an error occured in the original stream.

Defined in: packages/core/src/rx/operators/share.ts:22

resetOnRefCountZero? #

boolean

Wether to reset the stream when all observers have unsubscribed.

Defined in: packages/core/src/rx/operators/share.ts:14