Re: valve execution order

2020-03-27 Thread Mark Thomas
On 23/03/2020 14:23, Jonathan Yom-Tov wrote: > What about valves which are added programmatically within the same engine? > Is it possible to control the order? Not directly. Valves added programmatically are added to the end of the Pipeline. There isn't an insertValve() method so you need to add

Re: valve execution order

2020-03-23 Thread Jonathan Yom-Tov
What about valves which are added programmatically within the same engine? Is it possible to control the order? On Mon, Mar 23, 2020 at 4:14 PM Christopher Schultz < ch...@christopherschultz.net> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > Mark, > > On 3/23/20 09:59, Mark Th

Re: valve execution order

2020-03-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Mark, On 3/23/20 09:59, Mark Thomas wrote: > On 23/03/2020 13:13, Jonathan Yom-Tov wrote: >> I'm trying to create a valve which will prevent another valve >> from working in case a particular request is made. Is there a way >> to control the valve e

Re: valve execution order

2020-03-23 Thread Mark Thomas
On 23/03/2020 13:13, Jonathan Yom-Tov wrote: > I'm trying to create a valve which will prevent another valve from working > in case a particular request is made. Is there a way to control the valve > execution order so that I can inject my valve right before the valve I want > to stop? Valves shou