Interface TriggeredSandboxJobEventListener
- All Known Implementing Classes:
DefaultTriggeredSandboxJobEventListener
public interface TriggeredSandboxJobEventListener
Defines the contract for a class that awaits the transmission of sandbox-related
scheduled jobs
. They should be listening on the TriggeredJobEvent
channel. Typically, this will delegate the actual handling of jobs based on type to applicable
SandboxTriggeredJobEventHandlers
.- Author:
- Nathan Moore (nathandmoore)
-
Method Summary
Modifier and TypeMethodDescriptionvoid
handle
(org.springframework.messaging.Message<com.broadleafcommerce.common.messaging.domain.ScheduledJobRef> message) Responsible for executing actions in response to a scheduled job such as kicking off a newWorkflowDeployRequest
.
-
Method Details
-
handle
void handle(@NonNull org.springframework.messaging.Message<com.broadleafcommerce.common.messaging.domain.ScheduledJobRef> message) Responsible for executing actions in response to a scheduled job such as kicking off a newWorkflowDeployRequest
.- Parameters:
message
- aScheduledJobRef
message received over the TriggeredJobEvent input channel
-