You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The newly uploaded sample application gives more details on how this plugin can be used. It's not the final solution though as I believe it can be simplified even further, but it's a good start to get the feeling of the API. The guide will be updated soon.
There is no default constructor in AbstractTask i.e. the example should call super(String).
public PrimeNumbersTask(int numbersToFind) {
super("")
//initialize
}
The return type of execute does not match the interface definition <V, C>
i.e. shouldn't it return a List?
@OverRide
public List execute(Tracker tracker) throws Exception {
while (!enough && !isCancelled()) {
The text was updated successfully, but these errors were encountered: