예제 #1
0
파일: fsm.go 프로젝트: kapalhq/envoy
func ProcessChain(chain ChainSpec, ctx context.ContextSpec) (*http.Response, error) {
	for stateHandler := upstreamFn; stateHandler != nil; {
		stateHandler = stateHandler(chain, ctx)
	}
	return ctx.GetHttpResponse(), ctx.GetError()
}