001package org.intellimate.izou.sdk.specification.context; 002 003import java.util.concurrent.ExecutorService; 004 005/** 006 * @author Leander Kurscheidt 007 * @version 1.0 008 */ 009public interface ThreadPool extends org.intellimate.izou.system.context.ThreadPool { 010 /** 011 * returns a ThreadPool associated with the AddOn 012 * 013 * @return an instance of ExecutorService or Null if there is a problem with the Identifier 014 */ 015 ExecutorService getThreadPool(); 016}