소스 검색

finalize middleware module structure

tags/v0.9.0
jimzhan 9 년 전
부모
커밋
8813d0b8bb
1개의 변경된 파일9개의 추가작업 그리고 5개의 파일을 삭제
  1. +9
    -5
      module.go

+ 9
- 5
module.go 파일 보기

@@ -25,17 +25,21 @@ package rex
import "net/http"

type module struct {
cache http.Handler
stack []func(http.Handler) http.Handler
}

// build sets up the whole middleware modules in a FIFO chain.
func (self *module) build() http.Handler {
var next http.Handler = http.DefaultServeMux
// Activate modules in FIFO order.
for index := len(self.stack) - 1; index >= 0; index-- {
next = self.stack[index](next)
if self.cache == nil {
var next http.Handler = http.DefaultServeMux
// Activate modules in FIFO order.
for index := len(self.stack) - 1; index >= 0; index-- {
next = self.stack[index](next)
}
self.cache = next
}
return next
return self.cache
}

// Use add the middleware module into the stack chain.

Loading…
취소
저장