com.scudata.thread.BitsJob 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 com.scudata.dm.Sequence;
/**
* ????ִ??A.derive??????
* @author RunQian
*
*/
class BitsJob extends Job {
private Sequence src; // Դ????
private int start; // ??ʼλ?ã?????
private int end; // ????λ?ã???????
private String opt; // ѡ??
private Sequence result; // ?????
public BitsJob(Sequence src, int start, int end, String opt) {
this.src = src;
this.start = start;
this.end = end;
this.opt = opt;
}
public void run() {
result = src.bits(start, end, opt);
}
public Sequence getResult() {
return result;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy