## fulfilledObservablePipe or fulfilled$$$ ```ts function fulfilledObservablePipe( onFulfilled: IThenObservableOnFulfilled, ): IObservablePipe, IFulfilledObservableOutNotifications> ``` With: ```ts export type IFulfilledObservableOutNotifications = GOut | IErrorNotification; ``` This function is similar to the method `.then` of a Promise. It returns: ```ts thenObservablePipe>( onFulfilled, throwError, ); ``` ### Example ```ts const subscribe = pipe$$(request$, [ fulfilled$$$((response: Response): IObservable> => { if (response.ok) { return fromPromise(response.text()); } else { return throwError(createNetworkError()); } }), ]); subscribe((notification) => { console.log(notification.name, notification.value); }); ``` Output (if request succeed): ```text 'next', 'The following are the gr...' 'complete', undefined ```