Skip to content
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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open

Add spring workers manager #57

wants to merge 5 commits into from

Conversation

yasnovmi
Copy link
Contributor

No description provided.

* Annotation to enable Workers Manager module in Spring components via annotations.
*/
@Import(WorkersManagerConfiguration::class)
annotation class EnableWorkersManager

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.

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.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
* Glob has no capturing features.
* Glob has no capturing features.
* @author Vladimir Shefer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants