Package com.hazelcast.scheduledexecutor
Interface NamedTask
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface NamedTask
TheNamedTask
interface should be implemented by any task that needs to have an identification and enhanced atomicity upon scheduling the task.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Returns the name of the task.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name of the task. The name will be used to uniquely identify the task in the scheduler service, if a duplicate is detected aDuplicateTaskException
will be thrown and the task will be rejected.- Returns:
- String The name of the task
-
-