1 package com.nexuiz.demorecorder.application.jobs;
\r
3 import com.nexuiz.demorecorder.application.plugins.EncoderPlugin;
\r
6 * Job for the ThreadPoolExecutor that will just call the encoder-plugin's execute
\r
9 public class EncoderJob implements Runnable {
\r
11 private RecordJob job;
\r
12 private EncoderPlugin plugin;
\r
14 public EncoderJob(RecordJob job, EncoderPlugin plugin) {
\r
16 this.plugin = plugin;
\r
21 this.job.executePlugin(this.plugin);
\r