@FunctionalInterface
public interface DBManEventListenerI
DBManEventProviderI
.
using the DBManEventProviderI's subscribeEvents method.
When an event occurs, that object's processDBManEvent method is invoked.
Event handling of the processDBManEvent should be fast and take less than 100ms to return, because all listeners
are invoked by a single event dispatch thread.
It is strongly recommended to delegate the event handling into another thread and return early,
e.g. using a previously initialized Executors.newSingleThreadExecutor()
.
//AbstractSync api
Class[] notifiedClasses = new Class[]{Benutzer.class, Datei.class}
DBManBOChangeEventFilter filterM = DBManBOChangeEventFilter.getInstance(notifiedClasses)
try {
api.getRcl().subscribeEvents(this, filterM)
//start main consumer loop...
runMainLoop()
} finally {
api.getRcl().unsubscribeEvents(this)
}
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
$0 |
Modifier and Type | Method and Description |
---|---|
void |
processDBManEvent(DBManEvent e)
Invoked when a subscribed DBManEvent occurs.
|
static final java.lang.String $0
void processDBManEvent(DBManEvent e)
DBManBOChangeEvent
for events triggered after modification on BOs.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.