Java Code Examples for com.xxl.job.core.enums.ExecutorBlockStrategyEnum#setTitle()
The following examples show how to use
com.xxl.job.core.enums.ExecutorBlockStrategyEnum#setTitle() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: XxlJobDynamicScheduler.java From open-capacity-platform with Apache License 2.0 | 4 votes |
private void initI18n(){ for (ExecutorBlockStrategyEnum item:ExecutorBlockStrategyEnum.values()) { item.setTitle(I18nUtil.getString("jobconf_block_".concat(item.name()))); } }
Example 2
Source File: XxlJobDynamicScheduler.java From microservices-platform with Apache License 2.0 | 4 votes |
private void initI18n(){ for (ExecutorBlockStrategyEnum item:ExecutorBlockStrategyEnum.values()) { item.setTitle(I18nUtil.getString("jobconf_block_".concat(item.name()))); } }
Example 3
Source File: XxlJobDynamicScheduler.java From zuihou-admin-boot with Apache License 2.0 | 4 votes |
private void initI18n() { for (ExecutorBlockStrategyEnum item : ExecutorBlockStrategyEnum.values()) { item.setTitle(I18nUtil.getString("jobconf_block_".concat(item.name()))); } }
Example 4
Source File: XxlJobDynamicScheduler.java From zuihou-admin-cloud with Apache License 2.0 | 4 votes |
private void initI18n() { for (ExecutorBlockStrategyEnum item : ExecutorBlockStrategyEnum.values()) { item.setTitle(I18nUtil.getString("jobconf_block_".concat(item.name()))); } }
Example 5
Source File: XxlJobScheduler.java From xxl-job with GNU General Public License v3.0 | 4 votes |
private void initI18n(){ for (ExecutorBlockStrategyEnum item:ExecutorBlockStrategyEnum.values()) { item.setTitle(I18nUtil.getString("jobconf_block_".concat(item.name()))); } }