Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

📚 The CoCalc Library - books, templates and other resources

132944 views
License: OTHER
1
public final class StringTask implements Callable<String> {
2
int id;
3
public StringTask(int id) {
4
this.id = id;
5
}
6
public String call() {
7
return "Run " + id;
8
}
9
}
10