Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ControllerActionInvoker

What is the use of ControllerActionInvoker class?

like image 217
vecsuresh Avatar asked Apr 13 '09 08:04

vecsuresh


1 Answers

Basically it's an extensibility point on a Controller class that allows you to get in there and influence how the controller interacts with Parameters, Filters and the Action itself. When a request has been routed to the Controller, the Controller asks the ControllerActionInvoker to deal with the request (which normally involves it calling a method back on the Controller).

The main usage of this I've seen so far is to provide dependency injection into Action Filters as shown here, but I'm sure we'll see more uses for this feature popping up in the future!

like image 54
Steve Willcock Avatar answered Oct 23 '22 14:10

Steve Willcock