(context: RequestContext)
| 32 | } |
| 33 | |
| 34 | pre(context: RequestContext): Observable<RequestContext> { |
| 35 | return from(this.middleware.pre(context)); |
| 36 | } |
| 37 | |
| 38 | post(context: ResponseContext): Observable<ResponseContext> { |
| 39 | return from(this.middleware.post(context)); |