| Context.swift:22 | public extension ContextBox { |
| Context.swift:44 | public extension ContextBox { |
| Controller.swift:10 | func get(ctx: ContextBox) throws -> MiddlewareResult |
| Controller.swift:11 | func post(ctx: ContextBox) throws -> MiddlewareResult |
| Controller.swift:12 | func put(ctx: ContextBox) throws -> MiddlewareResult |
| Controller.swift:13 | func delete(ctx: ContextBox) throws -> MiddlewareResult |
| Controller.swift:14 | func before(ctx: ContextBox) throws -> MiddlewareResult |
| Controller.swift:15 | func after(ctx: ContextBox, result: MiddlewareResult) throws -> MiddlewareResult |
| Controller.swift:19 | func before(ctx: ContextBox) throws -> MiddlewareResult { |
| Controller.swift:22 | func after(ctx: ContextBox, result: MiddlewareResult) throws -> MiddlewareResult { |
| Controller.swift:25 | func handle(ctx: ContextBox) throws -> MiddlewareResult { |
| Controller.swift:47 | func get(ctx: ContextBox) throws -> MiddlewareResult { return .Next } |
| Controller.swift:48 | func post(ctx: ContextBox) throws -> MiddlewareResult { return .Next } |
| Controller.swift:49 | func put(ctx: ContextBox) throws -> MiddlewareResult { return .Next } |
| Controller.swift:50 | func delete(ctx: ContextBox) throws -> MiddlewareResult { return .Next } |
| Middleware.swift:17 | func handle(ctx: ContextBox) throws -> MiddlewareResult |
| Middleware.swift:18 | func handleIfNeeded(ctx: ContextBox) throws -> MiddlewareResult |
| Middleware.swift:23 | public func handleIfNeeded(ctx: ContextBox) throws -> MiddlewareResult { |
| Middleware.swift:33 | func shouldHandle(ctx: ContextBox) -> Bool |
| Middleware.swift:53 | func shouldHandle(ctx: ContextBox) -> Bool { |
| Middleware.swift:62 | public func shouldHandle(ctx: ContextBox) -> Bool { |
| Middleware.swift:67 | public typealias MiddlewareHandler = ContextBox throws -> MiddlewareResult |
| Middleware.swift:71 | func handle(ctx: ContextBox) throws -> MiddlewareResult { |
| Router.swift:14 | func shouldHandle(ctx: ContextBox, path: String) -> Bool |
| Router.swift:15 | func rewriteBefore(ctx: ContextBox) |
| Router.swift:22 | func shouldHandle(ctx: ContextBox) -> Bool { |
| Router.swift:25 | func handle(ctx: ContextBox) throws -> MiddlewareResult { |
| Router.swift:36 | func rewriteBefore(ctx: ContextBox) { |
| Router.swift:96 | public func shouldHandle(ctx: ContextBox, path: String) -> Bool { |
| Router.swift:113 | public func rewriteBefore(ctx: ContextBox) { |
| Router.swift:132 | public func shouldHandle(ctx: ContextBox, path: String) -> Bool { |
| Router.swift:161 | func handle(ctx: ContextBox) throws -> MiddlewareResult { |
| Router.swift:203 | public func shouldHandle(ctx: ContextBox) -> Bool { |
| Router.swift:206 | public func handle(ctx: ContextBox) throws -> MiddlewareResult { |
| WrapMiddleware.swift:10 | func handle(ctx: ContextBox, @noescape yieldNext: () throws -> MiddlewareResult) throws -> MiddlewareResult |
| WrapMiddleware.swift:11 | func genHandler(inner: MiddlewareType) -> (ContextBox throws -> MiddlewareResult) |
| WrapMiddleware.swift:15 | func genHandler(inner: MiddlewareType) -> (ContextBox throws -> MiddlewareResult) { |
| WrapMiddleware.swift:26 | func handle(ctx: ContextBox, @noescape yieldNext: () throws -> MiddlewareResult ) throws -> MiddlewareResult { |