当前位置: 首页>>代码示例>>Java>>正文


Java DeploymentState.undeployed方法代码示例

本文整理汇总了Java中org.springframework.cloud.deployer.spi.app.DeploymentState.undeployed方法的典型用法代码示例。如果您正苦于以下问题:Java DeploymentState.undeployed方法的具体用法?Java DeploymentState.undeployed怎么用?Java DeploymentState.undeployed使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.cloud.deployer.spi.app.DeploymentState的用法示例。


在下文中一共展示了DeploymentState.undeployed方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getStreamDeploymentState

import org.springframework.cloud.deployer.spi.app.DeploymentState; //导入方法依赖的package包/类
private DeploymentState getStreamDeploymentState(String streamName) {
	DeploymentState state = null;
	try {
		Info info = this.skipperClient.status(streamName);
		List<AppStatus> appStatusList = deserializeAppStatus(info.getStatus().getPlatformStatus());
		Set<DeploymentState> deploymentStateList = appStatusList.stream().map(appStatus -> appStatus.getState())
				.collect(Collectors.toSet());
		DeploymentState aggregateState = StreamDefinitionController.aggregateState(deploymentStateList);
		state = aggregateState;
	}
	catch (ReleaseNotFoundException e) {
		// a defined stream but unknown to skipper is considered to be in undeployed state
		if (streamDefinitionExists(streamName)) {
			state = DeploymentState.undeployed;
		}
	}
	return state;
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-dataflow,代码行数:19,代码来源:SkipperStreamDeployer.java

示例2: aggregateState

import org.springframework.cloud.deployer.spi.app.DeploymentState; //导入方法依赖的package包/类
/**
 * Aggregate the set of app states into a single state for a stream.
 *
 * @param states set of states for apps of a stream
 * @return the stream state based on app states
 */
public static DeploymentState aggregateState(List<DeploymentState> states) {
	if (states.size() == 1) {
		DeploymentState state = states.iterator().next();
		logger.debug("aggregateState: Deployment State Set Size = 1.  Deployment State " + state);
		// a stream which is known to the stream definition repository
		// but unknown to deployers is undeployed
		if (state == DeploymentState.unknown) {
			logger.debug("aggregateState: Returning " + DeploymentState.undeployed);
			return DeploymentState.undeployed;
		}
		else {
			logger.debug("aggregateState: Returning " + state);
			return state;
		}
	}
	if (states.isEmpty() || states.contains(DeploymentState.error)) {
		logger.debug("aggregateState: Returning " + DeploymentState.error);
		return DeploymentState.error;
	}
	if (states.contains(DeploymentState.failed)) {
		logger.debug("aggregateState: Returning " + DeploymentState.failed);
		return DeploymentState.failed;
	}
	if (states.contains(DeploymentState.deploying)) {
		logger.debug("aggregateState: Returning " + DeploymentState.deploying);
		return DeploymentState.deploying;
	}

	if (allAppsDeployed(states)) {
		return DeploymentState.deployed;
	}

	logger.debug("aggregateState: Returning " + DeploymentState.partial);
	return DeploymentState.partial;
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-skipper,代码行数:42,代码来源:ReleaseCommands.java

示例3: mapShallowAppState

import org.springframework.cloud.deployer.spi.app.DeploymentState; //导入方法依赖的package包/类
private DeploymentState mapShallowAppState(ApplicationSummary applicationSummary) {
	if (applicationSummary.getRunningInstances().equals(applicationSummary.getInstances())) {
		return DeploymentState.deployed;
	}
	else if (applicationSummary.getInstances() > 0) {
		return DeploymentState.partial;
	} else {
		return DeploymentState.undeployed;
	}
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-deployer-cloudfoundry,代码行数:11,代码来源:CloudFoundryAppDeployer.java

示例4: undeployStream

import org.springframework.cloud.deployer.spi.app.DeploymentState; //导入方法依赖的package包/类
@Override
public void undeployStream(String streamName) {
	DeploymentState streamDeploymentState = getStreamDeploymentState(streamName);
	if (streamDeploymentState != null && streamDeploymentState != DeploymentState.undeployed) {
		this.skipperClient.delete(streamName, true);
	}
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-dataflow,代码行数:8,代码来源:SkipperStreamDeployer.java

示例5: aggregateState

import org.springframework.cloud.deployer.spi.app.DeploymentState; //导入方法依赖的package包/类
/**
 * Aggregate the set of app states into a single state for a stream.
 *
 * @param states set of states for apps of a stream
 * @return the stream state based on app states
 */
public static DeploymentState aggregateState(Set<DeploymentState> states) {
	if (states.size() == 1) {
		DeploymentState state = states.iterator().next();
		logger.debug("aggregateState: Deployment State Set Size = 1.  Deployment State " + state);
		// a stream which is known to the stream definition streamDefinitionRepository
		// but unknown to deployers is undeployed
		if (state == DeploymentState.unknown) {
			logger.debug("aggregateState: Returning " + DeploymentState.undeployed);
			return DeploymentState.undeployed;
		}
		else {
			logger.debug("aggregateState: Returning " + state);
			return state;
		}
	}
	if (states.isEmpty() || states.contains(DeploymentState.error)) {
		logger.debug("aggregateState: Returning " + DeploymentState.error);
		return DeploymentState.error;
	}
	if (states.contains(DeploymentState.failed)) {
		logger.debug("aggregateState: Returning " + DeploymentState.failed);
		return DeploymentState.failed;
	}
	if (states.contains(DeploymentState.deploying)) {
		logger.debug("aggregateState: Returning " + DeploymentState.deploying);
		return DeploymentState.deploying;
	}

	logger.debug("aggregateState: Returing " + DeploymentState.partial);
	return DeploymentState.partial;
}
 
开发者ID:spring-cloud,项目名称:spring-cloud-dataflow,代码行数:38,代码来源:StreamDefinitionController.java


注:本文中的org.springframework.cloud.deployer.spi.app.DeploymentState.undeployed方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。