1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.async.api; 5 /** 6 * @author steve 7 */ 8 public interface Stage { 9 10 public final static int NO_MAX_QUEUE_SIZE = -1; 11 12 public void destroy(); 13 14 public Sink getSink(); 15 16 public String getName(); 17 18 public void start(ConfigurationContext context); 19 20 public void pause(); 21 22 public void unpause(); 23 }