Skip to main content
Version: 11.x

Interface: Observable<TValue, TError>

Defined in: packages/server/src/observable/types.ts:8

Extends

  • Subscribable<TValue, TError>

Extended by

Type Parameters

Type Parameter
TValue
TError

Methods

pipe()

Call Signature

pipe(): Observable<TValue, TError>

Defined in: packages/server/src/observable/types.ts:10

Returns

Observable<TValue, TError>

Call Signature

pipe<TValue1, TError1>(op1): Observable<TValue1, TError1>

Defined in: packages/server/src/observable/types.ts:11

Type Parameters
Type Parameter
TValue1
TError1
Parameters
ParameterType
op1OperatorFunction<TValue, TError, TValue1, TError1>
Returns

Observable<TValue1, TError1>

Call Signature

pipe<TValue1, TError1, TValue2, TError2>(op1, op2): Observable<TValue2, TError2>

Defined in: packages/server/src/observable/types.ts:14

Type Parameters
Type Parameter
TValue1
TError1
TValue2
TError2
Parameters
ParameterType
op1OperatorFunction<TValue, TError, TValue1, TError1>
op2OperatorFunction<TValue1, TError1, TValue2, TError2>
Returns

Observable<TValue2, TError2>

Call Signature

pipe<TValue1, TError1, TValue2, TError2, TValue3, TError3>(op1, op2, op3): Observable<TValue2, TError2>

Defined in: packages/server/src/observable/types.ts:18

Type Parameters
Type Parameter
TValue1
TError1
TValue2
TError2
TValue3
TError3
Parameters
ParameterType
op1OperatorFunction<TValue, TError, TValue1, TError1>
op2OperatorFunction<TValue1, TError1, TValue2, TError2>
op3OperatorFunction<TValue2, TError2, TValue3, TError3>
Returns

Observable<TValue2, TError2>

Call Signature

pipe<TValue1, TError1, TValue2, TError2, TValue3, TError3, TValue4, TError4>(op1, op2, op3, op4): Observable<TValue2, TError2>

Defined in: packages/server/src/observable/types.ts:23

Type Parameters
Type Parameter
TValue1
TError1
TValue2
TError2
TValue3
TError3
TValue4
TError4
Parameters
ParameterType
op1OperatorFunction<TValue, TError, TValue1, TError1>
op2OperatorFunction<TValue1, TError1, TValue2, TError2>
op3OperatorFunction<TValue2, TError2, TValue3, TError3>
op4OperatorFunction<TValue3, TError3, TValue4, TError4>
Returns

Observable<TValue2, TError2>

Call Signature

pipe<TValue1, TError1, TValue2, TError2, TValue3, TError3, TValue4, TError4, TValue5, TError5>(op1, op2, op3, op4, op5): Observable<TValue2, TError2>

Defined in: packages/server/src/observable/types.ts:29

Type Parameters
Type Parameter
TValue1
TError1
TValue2
TError2
TValue3
TError3
TValue4
TError4
TValue5
TError5
Parameters
ParameterType
op1OperatorFunction<TValue, TError, TValue1, TError1>
op2OperatorFunction<TValue1, TError1, TValue2, TError2>
op3OperatorFunction<TValue2, TError2, TValue3, TError3>
op4OperatorFunction<TValue3, TError3, TValue4, TError4>
op5OperatorFunction<TValue4, TError4, TValue5, TError5>
Returns

Observable<TValue2, TError2>


subscribe()

subscribe(observer): Unsubscribable

Defined in: packages/server/src/observable/types.ts:6

Parameters

ParameterType
observerPartial<Observer<TValue, TError>>

Returns

Unsubscribable

Inherited from

Subscribable.subscribe