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.util.concurrent;5 6 public class NullLifeCycleState implements LifeCycleState {7 8 public NullLifeCycleState() {9 super();10 }11 12 public void start() {13 return;14 }15 16 public boolean isStopRequested() {17 return false;18 }19 20 public boolean stopAndWait(long waitTime) {21 return true;22 }23 24 }25