Hi,
Is this mostly about value change events originating from calls like
record.refresh()? Could you elaborate a bit more on what you'd like to
do?
That would be one use case.
Or just a general property change listener like in a JavaBean. That way
I can bind it to a user interface field and if the record is updated
from somewhere other than the bound UI field, then the UI can be updated.
Something like
addValueChangeListener(ValueChangeListener)
fireValueChangeEvent(ValueChangeListener)
ValueChangeListener.valueChanged(Record, Field, OldValue, NewValue)
I'm sure you get the idea.
Or it could just use standard Javabean propertyChangeEvent
I think this would need to be implemented in the Record. But the trigger
idea sounds interesting. I'm all for hooks into Jooq. The more the
merrier :). What kind of events do you think could be hooked into using
the trigger?
Thanks, Ryan