Package io.vertigo.core.daemon
Interface Daemon
- All Superinterfaces:
Runnable
This interface serves as a marker to identify daemons, distinguishing them from simple other runnables.
Daemons are typically used for background tasks and are expected to run continuously.
Implementing this interface indicates that a class represents a daemon.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiondefault booleanverbose()Determines whether verbose logging is activated for this daemon.
-
Method Details
-
verbose
default boolean verbose()Determines whether verbose logging is activated for this daemon. Verbose logging provides detailed information about the daemon's activities and can be useful for debugging or monitoring purposes.- Returns:
trueif verbose logging is activated,falseotherwise.
-