Interface JobLambda

  • All Superinterfaces:
    JobRunrJob, java.io.Serializable
    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 JobLambda
    extends JobRunrJob
    This is a functional interface which represents a lambda that will be parsed by JobRunr. You may not create an actual instance of this class, instead you use it as follows:
    
    
         @Inject
         MyService myService;
    
         BackgroundJob.enqueue(myService -> myService.doWork("some argument"))
     

    or

    
    
         @Inject
         MyService myService;
    
         jobScheduler.enqueue(myService -> myService.doWork("some argument"))
     

    This functional interface allows you to enqueue background jobs while having an actual instance available of your service. While processing, JobRunr will lookup the actual service in the IoC container or create a new instance using the default constructor.

    • Method Detail

      • run

        void run()
          throws java.lang.Exception
        Throws:
        java.lang.Exception