Interface TaskFactory<R>

Type Parameters:
R - the type of the record used to create a Runnable task

public interface TaskFactory<R>
Factory interface for creating Runnable tasks from a given record. This interface allows the decoupling of task creation logic from task execution logic.
  • Method Summary

    Modifier and Type
    Method
    Description
    create(R record)
     
  • Method Details