I have an event driven system that responds to trades as follows
def onTrade {
if (price > threshold) {
processReject()
return
}
if (volume > threshold) {
processReject()
return
}
.
.
.
}
I thought I could improve things syntactically by defining an inner method
def onTrade {
def filterRemove = (filter: Boolean) => {
if (filter) {
processReject()
}
filter
}
val filters = List(
filterRemove(price > threshold),
filterRemove(volume > threshold),...
)
if (filters.filter(x => x == true).size > 0) return
}
The syntax is cleaner especially as the number of filters increases. The one issue I'm having is that the code wastes unnecessary clock cycles by going through every single test rather than returning on the first fail. Is this some way around this? For example exiting onTrade as soon as filterRemove returns false. If there is a more expressive way to do this I would love to know that as well.