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
{{ message }}
This repository has been archived by the owner on May 9, 2024. It is now read-only.
Boa tarde, em relação ao tipo Future que a função countPatternsFrom retorna, é suposto criar uma instância desse tipo, fazer override das funções da interface e retorná-lo ou há outra solução melhor?
Exemplo:
Future futureInteger = new Future() { @OverRide
public boolean cancel(boolean may) { ... } @OverRide
public Integer get(long timeout, TimeUnit unit)
(...)
};
return futureInteger;
The text was updated successfully, but these errors were encountered:
Boa tarde, em relação ao tipo Future que a função countPatternsFrom retorna, é suposto criar uma instância desse tipo, fazer override das funções da interface e retorná-lo ou há outra solução melhor?
Exemplo:
Future futureInteger = new Future() {
@OverRide
public boolean cancel(boolean may) { ... }
@OverRide
public Integer get(long timeout, TimeUnit unit)
(...)
};
return futureInteger;
The text was updated successfully, but these errors were encountered: