Interface ProcessOperations
-
public interface ProcessOperationsRetrieves information about TIBCO EBX Match and Merge Add-on processes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonBackgroundProcessDone(com.onwbp.adaptation.AdaptationTable table, java.util.function.Consumer<com.orchestranetworks.addon.mame.model.CallbackMessage> callback)Callback when the add-on's processes that are running in the background have finished.voidwaitingForBackgroundProcessDone(com.onwbp.adaptation.AdaptationTable table)Waits for the add-on's processes that are running in the background to finish.
-
-
-
Method Detail
-
waitingForBackgroundProcessDone
void waitingForBackgroundProcessDone(com.onwbp.adaptation.AdaptationTable table) throws java.lang.InterruptedExceptionWaits for the add-on's processes that are running in the background to finish. The add-on's background processes are triggered when records have been created, updated or deleted in a table configured to run matching operations.- Parameters:
table- the table where the add-on's processes are running.- Throws:
java.lang.InterruptedException
-
onBackgroundProcessDone
void onBackgroundProcessDone(com.onwbp.adaptation.AdaptationTable table, java.util.function.Consumer<com.orchestranetworks.addon.mame.model.CallbackMessage> callback)Callback when the add-on's processes that are running in the background have finished. The add-on's background processes are triggered when records have been created, updated or deleted in a table configured to run matching operations.- Parameters:
table- the table where the add-on's processes are running.callback- the Consumer is called when the add-on's background processes have finished.
-
-