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
The NamedTask interface should be implemented by any task that needs to have an identification and enhanced atomicity upon scheduling the task.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the name of the task.
  • Method Details

    • getName

      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 a DuplicateTaskException will be thrown and the task will be rejected.
      Returns:
      String The name of the task