com.scudata.thread.DateSortJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.thread;
import java.util.Date;
/**
* ????ִ???????????
* @author RunQian
*
*/
class DateSortJob extends Job {
private Date []src;
private Date []dest;
private int fromIndex; // ??ʼλ?ã?????
private int toIndex; // ????λ?ã???????
private int off; // ?????????ƫ????
private int threadCount; // ?????߳???
public DateSortJob(Date []src, Date []dest, int fromIndex, int toIndex, int off, int threadCount) {
this.src = src;
this.dest = dest;
this.fromIndex = fromIndex;
this.toIndex = toIndex;
this.off = off;
this.threadCount = threadCount;
}
public void run() {
MultithreadUtil.mergeSort(src, dest, fromIndex, toIndex, off, threadCount);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy