import java.io.IOException;
import java.net.UnknownHostException;
import java.util.List;
-import java.util.concurrent.Executor;
/**
* Interface for the core.
public void removeCoreListener(CoreListener coreListener);
/**
- * Returns a thread pool.
- *
- * @return A thread pool
- */
- public Executor getThreadPool();
-
- /**
* Adds the given node to the core.
*
* @param node
private final CoreListenerSupport coreListenerSupport = new CoreListenerSupport();
/** Thread pool. */
+ @SuppressWarnings("unused")
private Executor threadPool = Executors.newCachedThreadPool();
/** The project manager. */
//
/**
- * {@inheritDoc}
- */
- public Executor getThreadPool() {
- return threadPool;
- }
-
- /**
* Returns the project manager.
*
* @return The project manager