I have next problem. I have an interface:
public interface Worker<T> {
public void start(Class<? extends T> taskClass);
}
and singleton implementation of this interface:
public final class Listener<T extends Runnable> implements Worker<T> {
private Listener() {}
@Override
public void start(Class<? extends T> taskClass) { ... }
public static Listener getInstance() {
return SingletonHolder.INSTANCE;
}
private static class SingletonHolder {
public static final Listener INSTANCE = new Listener();
}
}
My question is, can I get the singleton instance by this way:
Worker<Thread> listener = Listener.getInstance();
is still type-safe? when not, how can I use generic in singleton instance to by type-safe?