1 /*2 * Copyright 2001-2003 The eXo platform SARL All rights reserved.3 * Please look at license.txt in info directory for more license detail.4 */5 6 package org.exoplatform.services.threadpool;7 8 /**9 * @author Mestrallet Benjamin10 * benjmestrallet@users.sourceforge.net11 */12 public interface ThreadPoolService {13 14 public void execute(Runnable task)15 throws InterruptedException ;16 17 }18