Interface ProcessOperations
public interface ProcessOperations
Retrieves information about TIBCO EBX Match and Merge Add-on processes.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onBackgroundProcessDone
(com.onwbp.adaptation.AdaptationTable table, Consumer<com.orchestranetworks.addon.mame.model.CallbackMessage> callback) Callback when the add-on's processes that are running in the background have finished.void
waitingForBackgroundProcessDone
(com.onwbp.adaptation.AdaptationTable table) Waits for the add-on's processes that are running in the background to finish.
-
Method Details
-
waitingForBackgroundProcessDone
void waitingForBackgroundProcessDone(com.onwbp.adaptation.AdaptationTable table) throws InterruptedException Waits 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:
InterruptedException
-
onBackgroundProcessDone
void onBackgroundProcessDone(com.onwbp.adaptation.AdaptationTable table, 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.
-