Package org.camunda.bpm.engine.impl.cmd
Class SignalEventReceivedCmd
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmd.SignalEventReceivedCmd
-
-
Field Summary
Fields Modifier and Type Field Description protected SignalEventReceivedBuilderImpl
builder
protected static CommandLogger
LOG
-
Constructor Summary
Constructors Constructor Description SignalEventReceivedCmd(SignalEventReceivedBuilderImpl builder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
checkAuthorizationOfCatchSignals(CommandContext commandContext, List<EventSubscriptionEntity> catchSignalEventSubscription)
Void
execute(CommandContext commandContext)
protected List<EventSubscriptionEntity>
filterIntermediateSubscriptions(List<EventSubscriptionEntity> subscriptions)
protected List<EventSubscriptionEntity>
filterStartSubscriptions(List<EventSubscriptionEntity> subscriptions)
protected List<EventSubscriptionEntity>
findSignalEventSubscriptions(CommandContext commandContext, String signalName)
protected Map<String,ProcessDefinitionEntity>
getProcessDefinitionsOfSubscriptions(List<EventSubscriptionEntity> startSignalEventSubscriptions)
protected void
sendSignal(CommandContext commandContext, String signalName)
protected void
sendSignalToExecution(CommandContext commandContext, String signalName, String executionId)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.camunda.bpm.engine.impl.interceptor.Command
isRetryable
-
-
-
-
Field Detail
-
LOG
protected static final CommandLogger LOG
-
builder
protected final SignalEventReceivedBuilderImpl builder
-
-
Constructor Detail
-
SignalEventReceivedCmd
public SignalEventReceivedCmd(SignalEventReceivedBuilderImpl builder)
-
-
Method Detail
-
execute
public Void execute(CommandContext commandContext)
-
sendSignal
protected void sendSignal(CommandContext commandContext, String signalName)
-
findSignalEventSubscriptions
protected List<EventSubscriptionEntity> findSignalEventSubscriptions(CommandContext commandContext, String signalName)
-
getProcessDefinitionsOfSubscriptions
protected Map<String,ProcessDefinitionEntity> getProcessDefinitionsOfSubscriptions(List<EventSubscriptionEntity> startSignalEventSubscriptions)
-
sendSignalToExecution
protected void sendSignalToExecution(CommandContext commandContext, String signalName, String executionId)
-
checkAuthorizationOfCatchSignals
protected void checkAuthorizationOfCatchSignals(CommandContext commandContext, List<EventSubscriptionEntity> catchSignalEventSubscription)
-
filterIntermediateSubscriptions
protected List<EventSubscriptionEntity> filterIntermediateSubscriptions(List<EventSubscriptionEntity> subscriptions)
-
filterStartSubscriptions
protected List<EventSubscriptionEntity> filterStartSubscriptions(List<EventSubscriptionEntity> subscriptions)
-
-