CherishCai opened a new issue #1937:
URL: https://github.com/apache/shardingsphere-elasticjob/issues/1937
## Question
**For English only**, other languages will not accept.
can ElasticJobListener has an order? or afterJobExecuted reverse order call
ElasticJobListener under code.
org.apache.shardingsphere.elasticjob.lite.internal.schedule.LiteJobFacade
```java
@Override
public void beforeJobExecuted(final ShardingContexts shardingContexts) {
for (ElasticJobListener each : elasticJobListeners) {
each.beforeJobExecuted(shardingContexts);
}
}
@Override
public void afterJobExecuted(final ShardingContexts shardingContexts) {
for (ElasticJobListener each : elasticJobListeners) {
each.afterJobExecuted(shardingContexts);
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]