Interface providing access to the response stream.
interface CallHandler<T = any> {
handle(): Observable<T>
}
Methods
handle()
|
Returns an Observable representing the response stream from the route
handler.
|
handle(): Observable<T>
Parameters
There are no parameters.
Returns
Observable<T>
|