2021-03-26 11:43:51,425 - [ForkJoinPool.commonPool-worker-3] - INFO - org.my.package.Main - Do JPPF distributed task[client: jppf_discovery-1-1 - ClassServer] Attempting connection to the class server at address:port[client: jppf_discovery-1-1 - ClassServer] Reconnected to the class server[client: jppf_discovery-1-1 - TasksServer] Attempting connection to the task server at address:port[client: jppf_discovery-1-1 - TasksServer] Reconnected to the JPPF task server[client: jppf_discovery-1-1 - ClassServer] Attempting connection to the class server at address:port[client: jppf_discovery-1-1 - ClassServer] Reconnected to the class server[client: jppf_discovery-1-1 - TasksServer] Attempting connection to the task server at address:port[client: jppf_discovery-1-1 - TasksServer] Reconnected to the JPPF task server
JPPFJob jppfJob = new JPPFJob();JobMetadata metadata = jppfJob.getMetadata();metadata.setParameter(1, "hey");SerializableRunnable runnable =()-> { System.err.println(" I am the runnable! "); };metadata.setParameter(2, runnable);
Runnable runnable = (Serializable & Runnable) () -> System.err.println(" I am the runnable! ");