/* ================================================================== * Created [2009-4-27 下午11:32:55] by Jon.King * ================================================================== * TSS * ================================================================== * mailTo:jinpujun@hotmail.com * Copyright (c) Jon.King, 2009-2012 * ================================================================== */ package com.jinhe.tss.core.cachepool.extend.assignment; import com.jinhe.tss.core.cachepool.Reusable; /** * <p> IAssignment.java </p> * 可执行任务接口 * * @author Jon.King 2007-1-8 */ public interface IAssignment extends Reusable{ /** * 执行任务 */ void excute(); }