01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.async.api;
06:
07: /**
08: * This type of context has a build in execute() method which is run instead of the handler's handleEvent() method.
09: * These contexts are used to run some code inband to do stuff after all the other queued event contexts are executed.
10: */
11: public interface SpecializedEventContext extends EventContext {
12:
13: public void execute() throws EventHandlerException;
14: }
|