Hi,

what is the execution order of dispatchers, last in, first out or first in,
last out? following are my two dispatchers, which will be called first and
why? thanks.

public static void
contributeMasterDispatcher(OrderedConfiguration<Dispatcher> configuration,
                                                
@InjectService("MyDispatcher") MyDispatcher myDispatcher) {
       configuration.add("MyDispatcher", myDispatcher, "before:PageRender");
   }

   public static void
contributeMasterDispatcher(OrderedConfiguration<Dispatcher> configuration,
                                                
@InjectService("HisDispatcher") HisDispatcher hisDispatcher) 
       configuration.add("HisDispatcher", hisDispatcher,
"before:PageRender");
   }


-- 
View this message in context: 
http://www.nabble.com/T5%3A-ordering-of-Dispatchers-tp22620974p22620974.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to