Skip to content

Commit

Permalink
RHPAM-4779: New event when Process Instance related data changes (#646)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmirasch authored Aug 6, 2024
1 parent b150b20 commit dbd2dd9
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,8 @@ public void beforeProcessStarted(ProcessStartedEvent event) {
public void beforeVariableChanged(ProcessVariableChangedEvent event) {
// intentionally left blank
}
public void onProcessDataChangedEvent(ProcessDataChangedEvent event) {
// intentionally left blank
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/*
* Copyright 2023 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.kie.api.event.process;

/**
* A runtime event that is generated when a ProcessInstance is completed.
*/
public interface ProcessDataChangedEvent
extends
ProcessEvent {

}
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,11 @@ default void onMessage(MessageEvent event) {}
* @param event
*/
default void onAsyncNodeScheduledEvent(ProcessAsyncNodeScheduledEvent event) {}

/**
* This listener method is invoked when any process instance's data has been modified.
* @param event
*/
default void onProcessDataChangedEvent(ProcessDataChangedEvent event) {}
}

0 comments on commit dbd2dd9

Please sign in to comment.