org.infinispan.lifecycle.ComponentStatus Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source
* Copyright 2009 Red Hat Inc. and/or its affiliates and other
* contributors as indicated by the @author tags. All rights reserved.
* See the copyright.txt in the distribution for a full listing of
* individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.infinispan.lifecycle;
import org.infinispan.util.logging.Log;
import org.infinispan.util.logging.LogFactory;
/**
* Different states a component may be in.
*
* @author Manik Surtani
* @see org.infinispan.lifecycle.Lifecycle
* @since 4.0
*/
public enum ComponentStatus {
/**
* Object has been instantiated, but start() has not been called.
*/
INSTANTIATED,
/**
* The start()
method has been called but not yet completed.
*/
INITIALIZING,
/**
* The start()
method has been completed and the component is running.
*/
RUNNING,
/**
* The stop()
method has been called but has not yet completed.
*/
STOPPING,
/**
* The stop()
method has completed and the component has terminated.
*/
TERMINATED,
/**
* The component is in a failed state due to a problem with one of the other lifecycle transition phases.
*/
FAILED;
private static final Log log = LogFactory.getLog(ComponentStatus.class);
public boolean needToDestroyFailedCache() {
return this == ComponentStatus.FAILED;
}
public boolean startAllowed() {
switch (this) {
case INSTANTIATED:
return true;
default:
return false;
}
}
public boolean needToInitializeBeforeStart() {
switch (this) {
case TERMINATED:
return true;
default:
return false;
}
}
public boolean stopAllowed() {
switch (this) {
case INSTANTIATED:
case TERMINATED:
case STOPPING:
case INITIALIZING:
return false;
default:
return true;
}
}
public boolean allowInvocations() {
return this == ComponentStatus.RUNNING;
}
public boolean startingUp() {
return this == ComponentStatus.INITIALIZING || this == ComponentStatus.INSTANTIATED;
}
public boolean isTerminated() {
return this == ComponentStatus.TERMINATED;
}
public boolean isStopping() {
return this == ComponentStatus.STOPPING;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy