public interface TransactionMessageBusI
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
$0 |
Modifier and Type | Method and Description |
---|---|
void |
consumeAfterSetMessage(SetValueEventI changeEvent) |
boolean |
createAfterAddMessage(BO bo,
AttributeI attribute,
BO addedBO) |
boolean |
createAfterRemoveMessage(BO bo,
AttributeI attribute,
BO removed) |
boolean |
createAfterSetMessage(BO bo,
AttributeI attribute,
java.lang.Object newValue) |
boolean |
createAfterSetMessage(BO bo,
AttributeI attribute,
java.lang.Object newValue,
java.lang.Object oldValue)
Creates and queues a new change message for setting a scalar or n-1 relation to a new value.
|
boolean |
isEventFiringPaused() |
void |
newProcSync()
Waits until the backlog is cleared and all listeners have been informed.
|
void |
pauseFiringNewProcs()
Pauses notifications for all consumers until a matching number of resumeFiringNewProcs calls have been made.
|
void |
registerListener(TransactionListenerI l)
Registers a nonnull listener to receive notification on new changes from now on.
|
void |
resumeFiringNewProcs()
Reduces the number of pause requests created by by one and resumes firing of new
procs if no pause requests remain.
|
void |
unregisterListener(TransactionListenerI l)
Unregisters a nonnull listener, causing that listener to no longer receive notifications.
|
static final java.lang.String $0
boolean isEventFiringPaused()
#isAcceptingMessages()
, then the messages will be queued and delayed until
the messaging has been resumed.
false, if not paused.
If not paused and this bus accepts messages, then listeners will get notified.
When not accepting messages, then this property has effectively no effect.void pauseFiringNewProcs()
void resumeFiringNewProcs()
void newProcSync()
void registerListener(TransactionListenerI l)
void unregisterListener(TransactionListenerI l)
void consumeAfterSetMessage(SetValueEventI changeEvent)
boolean createAfterSetMessage(BO bo, AttributeI attribute, java.lang.Object newValue, java.lang.Object oldValue)
bo
- the bo which was changed virtually, nonnull.attribute
- the nullable attribute that was changed. While this method doesn't check if attribute is really virtual,
it should be. Persistent attributes generate procs automatically by the transaction, if not, it is probably missing an include.newValue
- a nullable newValue to put into the notification, can be null if newValue isn't available directly and the up-to-date
value has to be accessed by the view anyway.oldValue
- a nullable and optional oldValue to be put into the event.
Should only be provided if the oldValue is readily available, because it is most likely ignored.boolean createAfterSetMessage(BO bo, AttributeI attribute, java.lang.Object newValue)
boolean createAfterAddMessage(BO bo, AttributeI attribute, BO addedBO)
boolean createAfterRemoveMessage(BO bo, AttributeI attribute, BO removed)
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.