bindCallback(callbackFunc: Function, resultSelector: Function, scheduler?: SchedulerLike): (...args: any[]) => Observable<any>
Parameters
callbackFunc |
Type: Function .
|
resultSelector |
Type: Function .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(...args: any[]) => Observable<any>
|
bindCallback(callbackFunc: (callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any, scheduler?: SchedulerLike): () => Observable<any[]>
Parameters
callbackFunc |
Type: (callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
() => Observable<any[]>
|
bindCallback(callbackFunc: (callback: (res1: R1, res2: R2, res3: R3) => any) => any, scheduler?: SchedulerLike): () => Observable<[R1, R2, R3]>
Parameters
callbackFunc |
Type: (callback: (res1: R1, res2: R2, res3: R3) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
() => Observable<[R1, R2, R3]>
|
bindCallback(callbackFunc: (callback: (res1: R1, res2: R2) => any) => any, scheduler?: SchedulerLike): () => Observable<[R1, R2]>
Parameters
callbackFunc |
Type: (callback: (res1: R1, res2: R2) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
() => Observable<[R1, R2]>
|
bindCallback(callbackFunc: (callback: (res1: R1) => any) => any, scheduler?: SchedulerLike): () => Observable<R1>
Parameters
callbackFunc |
Type: (callback: (res1: R1) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
() => Observable<R1>
|
bindCallback(callbackFunc: (callback: () => any) => any, scheduler?: SchedulerLike): () => Observable<void>
Parameters
callbackFunc |
Type: (callback: () => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
() => Observable<void>
|
bindCallback(callbackFunc: (arg1: A1, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any, scheduler?: SchedulerLike): (arg1: A1) => Observable<any[]>
Parameters
callbackFunc |
Type: (arg1: A1, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1) => Observable<any[]>
|
bindCallback(callbackFunc: (arg1: A1, callback: (res1: R1, res2: R2, res3: R3) => any) => any, scheduler?: SchedulerLike): (arg1: A1) => Observable<[R1, R2, R3]>
Parameters
callbackFunc |
Type: (arg1: A1, callback: (res1: R1, res2: R2, res3: R3) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1) => Observable<[R1, R2, R3]>
|
bindCallback(callbackFunc: (arg1: A1, callback: (res1: R1, res2: R2) => any) => any, scheduler?: SchedulerLike): (arg1: A1) => Observable<[R1, R2]>
Parameters
callbackFunc |
Type: (arg1: A1, callback: (res1: R1, res2: R2) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1) => Observable<[R1, R2]>
|
bindCallback(callbackFunc: (arg1: A1, callback: (res1: R1) => any) => any, scheduler?: SchedulerLike): (arg1: A1) => Observable<R1>
Parameters
callbackFunc |
Type: (arg1: A1, callback: (res1: R1) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1) => Observable<R1>
|
bindCallback(callbackFunc: (arg1: A1, callback: () => any) => any, scheduler?: SchedulerLike): (arg1: A1) => Observable<void>
Parameters
callbackFunc |
Type: (arg1: A1, callback: () => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1) => Observable<void>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2) => Observable<any[]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2) => Observable<any[]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, callback: (res1: R1, res2: R2, res3: R3) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2) => Observable<[R1, R2, R3]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, callback: (res1: R1, res2: R2, res3: R3) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2) => Observable<[R1, R2, R3]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, callback: (res1: R1, res2: R2) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2) => Observable<[R1, R2]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, callback: (res1: R1, res2: R2) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2) => Observable<[R1, R2]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, callback: (res1: R1) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2) => Observable<R1>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, callback: (res1: R1) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2) => Observable<R1>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, callback: () => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2) => Observable<void>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, callback: () => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2) => Observable<void>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3) => Observable<any[]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3) => Observable<any[]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, callback: (res1: R1, res2: R2, res3: R3) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3) => Observable<[R1, R2, R3]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, callback: (res1: R1, res2: R2, res3: R3) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3) => Observable<[R1, R2, R3]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, callback: (res1: R1, res2: R2) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3) => Observable<[R1, R2]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, callback: (res1: R1, res2: R2) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3) => Observable<[R1, R2]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, callback: (res1: R1) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3) => Observable<R1>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, callback: (res1: R1) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3) => Observable<R1>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, callback: () => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3) => Observable<void>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, callback: () => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3) => Observable<void>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<any[]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<any[]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (res1: R1, res2: R2, res3: R3) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<[R1, R2, R3]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (res1: R1, res2: R2, res3: R3) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<[R1, R2, R3]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (res1: R1, res2: R2) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<[R1, R2]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (res1: R1, res2: R2) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<[R1, R2]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (res1: R1) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<R1>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: (res1: R1) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<R1>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: () => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<void>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, callback: () => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4) => Observable<void>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<any[]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (res1: R1, res2: R2, res3: R3, res4: R4, ...args: any[]) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<any[]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (res1: R1, res2: R2, res3: R3) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<[R1, R2, R3]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (res1: R1, res2: R2, res3: R3) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<[R1, R2, R3]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (res1: R1, res2: R2) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<[R1, R2]>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (res1: R1, res2: R2) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<[R1, R2]>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (res1: R1) => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<R1>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: (res1: R1) => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<R1>
|
bindCallback(callbackFunc: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: () => any) => any, scheduler?: SchedulerLike): (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<void>
Parameters
callbackFunc |
Type: (arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5, callback: () => any) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(arg1: A1, arg2: A2, arg3: A3, arg4: A4, arg5: A5) => Observable<void>
|
bindCallback(callbackFunc: (...args: Array<A | ((result: R) => any)>) => any, scheduler?: SchedulerLike): (...args: A[]) => Observable<R>
Parameters
callbackFunc |
Type: (...args: Array any)>) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(...args: A[]) => Observable<R>
|
bindCallback(callbackFunc: (...args: Array<A | ((...results: R[]) => any)>) => any, scheduler?: SchedulerLike): (...args: A[]) => Observable<R[]>
Parameters
callbackFunc |
Type: (...args: Array any)>) => any .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(...args: A[]) => Observable<R[]>
|
bindCallback(callbackFunc: Function, scheduler?: SchedulerLike): (...args: any[]) => Observable<any>
Parameters
callbackFunc |
Type: Function .
|
scheduler |
Optional. Default is undefined .
Type: SchedulerLike .
|
Returns
(...args: any[]) => Observable<any>
|