-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add spring workers manager #57
base: master
Are you sure you want to change the base?
Conversation
.../src/main/kotlin/ru/touchin/spring/workers/manager/agent/annotation_config/DefaultTrigger.kt
Outdated
Show resolved
Hide resolved
...rs-manager-agent/src/main/kotlin/ru/touchin/spring/workers/manager/agent/AgentInitializer.kt
Outdated
Show resolved
Hide resolved
...-core/src/main/kotlin/ru/touchin/spring/workers/manager/core/repositories/RepositoryUtils.kt
Outdated
Show resolved
Hide resolved
...nt/src/main/kotlin/ru/touchin/spring/workers/manager/agent/scheduled/WorkerManagerWatcher.kt
Outdated
Show resolved
Hide resolved
...ers-manager-core/src/main/kotlin/ru/touchin/spring/workers/manager/core/worker/dto/Worker.kt
Outdated
Show resolved
Hide resolved
* Annotation to enable Workers Manager module in Spring components via annotations. | ||
*/ | ||
@Import(WorkersManagerConfiguration::class) | ||
annotation class EnableWorkersManager |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of using @Enable...
annotation you can simply add your configuration to spring.factories
.
example: https://github.com/vladimirshefer/spring-boot-starter-telegram/blob/master/spring-boot-starter-telegram/src/main/resources/META-INF/spring.factories
* Glob is simple replacement for Regex. | ||
* It uses only two special chars: * (any substring) and ? (any char) | ||
* This implementation has no support for characters escaping. | ||
* Glob has no capturing features. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add @author Vladimir Shefer
to the javadoc :)
* Glob is simple replacement for Regex. | ||
* It uses only two special chars: * (any substring) and ? (any char) | ||
* This implementation has no support for characters escaping. | ||
* Glob has no capturing features. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Glob has no capturing features. | |
* Glob has no capturing features. | |
* @author Vladimir Shefer |
No description provided.