1 23 24 package com.sun.enterprise.web.connector.grizzly; 25 26 import com.sun.enterprise.web.connector.grizzly.async.AsyncProcessorTask; 27 28 41 public interface AsyncExecutor { 42 43 48 public boolean preExecute() throws Exception ; 49 50 51 57 public boolean interrupt() throws Exception ; 58 59 60 65 public boolean postExecute() throws Exception ; 66 67 68 71 public void setAsyncProcessorTask(AsyncProcessorTask task); 72 73 74 77 public AsyncProcessorTask getAsyncProcessorTask(); 78 79 80 83 public void addAsyncFilter(AsyncFilter asyncFilter); 84 85 86 89 public boolean removeAsyncFilter(AsyncFilter asyncFilter); 90 } 91 | Popular Tags |