CallHandler

Interface providing access to the response stream.


interface CallHandler<T = any> {
  handle(): Observable<T>
}

See also

Methods

handle()

Returns an Observable representing the response stream from the route handler.


handle(): Observable<T>

Parameters

There are no parameters.

Returns

Observable<T>