tree: c6dc773542cda5bd1466edb6dfb4795f66cc3928 [path history] [tgz]
  1. accesslog/
  2. active/
  3. adaptivesvc/
  4. auth/
  5. echo/
  6. exec_limit/
  7. filter_impl/
  8. generic/
  9. graceful_shutdown/
  10. handler/
  11. hystrix/
  12. metrics/
  13. seata/
  14. sentinel/
  15. token/
  16. tps/
  17. tracing/
  18. access_key.go
  19. authenticator.go
  20. filter.go
  21. README.md
  22. rejected_execution_handler.go
  23. tps_limiter.go
  24. tps_strategy.go
filter/README.md

Filter

Getting Started

Recommended Way: import what you needs, see also dubbo-go/imports.

package demo

// use echo and generic filters
import _ "dubbo.apache.org/dubbo-go/v3/filter/echo"
import _ "dubbo.apache.org/dubbo-go/v3/filter/generic"

Legacy way: import all filters by one line.

package demo

import _ "dubbo.apache.org/dubbo-go/v3/filter/filter_impl"

Contents