GithubHelp home page GithubHelp logo

priority of multiple middleware. about poem HOT 3 CLOSED

poem-web avatar poem-web commented on July 29, 2024
priority of multiple middleware.

from poem.

Comments (3)

sunli829 avatar sunli829 commented on July 29, 2024

In the following example, the M2 middleware will be executed before M1, which is very similar to std::iterator::Iterator. Each with function will generate a new endpoint that wraps the previous endpoint.

ep.with(M1).with(M2)

from poem.

bingryan avatar bingryan commented on July 29, 2024

In the following example, the M2 middleware will be executed before M1, which is very similar to std::iterator::Iterator. Each with function will generate a new endpoint that wraps the previous endpoint.

ep.with(M1).with(M2)

that's cool, before you answer. I thought about it for a while, add a priority value, such as:

ep.with_multi([(1,M1),(2,M2)])

ep.around_multi([(1,M1),(2,M2)])

or add global middleware priority value , such as:

Route::new().xxx(
	"api",
	Route::new().with([M2]),
	Route::new().with([M1,M3]),
).middlewares([
	(M1, 1),
	(M2, 2),
	(M3, 10),
])

from poem.

sunli829 avatar sunli829 commented on July 29, 2024

You can use multiple middleware with the with method:

ep.with((M1, M2))

But you cannot use integers to specify their priority value.
The principle of middleware is to wrap previous endpoint to generate a new one, so this is impossible to achieve.

from poem.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.