Open twss opened 5 years ago
Given I have a chain handler:
chainHandler1.chain(chainHandler2).chain(memoryHandler)
and the normal flow would be:
chainHandler1.beforeSearch chainHandler2.beforeSearch MemoryHandler.search chainHandler2.afterSearch chainHandler1.afterSearch
What would be the correct way to terminate early and only do:
chainHandler1.beforeSearch chainHandler1.afterSearch
Given I have a chain handler:
and the normal flow would be:
What would be the correct way to terminate early and only do: