01: /**
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */package com.tc.util.concurrent;
04:
05: public class NullLifeCycleState implements LifeCycleState {
06:
07: public NullLifeCycleState() {
08: super ();
09: }
10:
11: public void start() {
12: return;
13: }
14:
15: public boolean isStopRequested() {
16: return false;
17: }
18:
19: public boolean stopAndWait(long waitTime) {
20: return true;
21: }
22:
23: }
|