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


Java BlueprintEvent.DESTROYING属性代码示例

本文整理汇总了Java中org.osgi.service.blueprint.container.BlueprintEvent.DESTROYING属性的典型用法代码示例。如果您正苦于以下问题:Java BlueprintEvent.DESTROYING属性的具体用法?Java BlueprintEvent.DESTROYING怎么用?Java BlueprintEvent.DESTROYING使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.osgi.service.blueprint.container.BlueprintEvent的用法示例。


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

示例1: getBundleState

@Override public BundleState getBundleState( long bundleId ) {
  BlueprintEvent blueprintEvent = states.get( bundleId );

  if ( blueprintEvent == null ) {
    return BundleState.Unknown;
  }
  switch ( blueprintEvent.getType() ) {
    case BlueprintEvent.CREATING:
      return BundleState.Starting;
    case BlueprintEvent.CREATED:
      return BundleState.Active;
    case BlueprintEvent.DESTROYING:
      return BundleState.Stopping;
    case BlueprintEvent.DESTROYED:
      return BundleState.Resolved;
    case BlueprintEvent.FAILURE:
      return BundleState.Failure;
    case BlueprintEvent.GRACE_PERIOD:
      return BundleState.GracePeriod;
    case BlueprintEvent.WAITING:
      return BundleState.Waiting;
    default:
      return BundleState.Unknown;
  }
}
 
开发者ID:pentaho,项目名称:pentaho-osgi-bundles,代码行数:25,代码来源:BlueprintStateServiceImpl.java

示例2: preProcessClose

public void preProcessClose(ConfigurableOsgiBundleApplicationContext context) {
	BlueprintEvent destroyingEvent =
			new BlueprintEvent(BlueprintEvent.DESTROYING, context.getBundle(), extenderBundle);

	listenerManager.blueprintEvent(destroyingEvent);
	dispatcher.beforeClose(destroyingEvent);
}
 
开发者ID:eclipse,项目名称:gemini.blueprint,代码行数:7,代码来源:BlueprintContainerProcessor.java

示例3: getEventTypeString

private String getEventTypeString(final int type) {
    String eventType = "";
    switch (type) {
    case BlueprintEvent.CREATED:
        eventType = BLUEPRINT_EVENT_CREATED;
        break;
    case BlueprintEvent.CREATING:
        eventType = BLUEPRINT_EVENT_CREATING;
        break;
    case BlueprintEvent.DESTROYED:
        eventType = BLUEPRINT_EVENT_DESTORYED;
        break;
    case BlueprintEvent.DESTROYING:
        eventType = BLUEPRINT_EVENT_DESTROYING;
        break;
    case BlueprintEvent.FAILURE:
        eventType = BLUEPRINT_EVENT_FAILURE;
        break;
    case BlueprintEvent.GRACE_PERIOD:
        eventType = BLUEPRINT_EVENT_GRACE_PERIOD;
        break;
    case BlueprintEvent.WAITING:
        eventType = BLUEPRINT_EVENT_WAITING;
        break;
    }
    return eventType;
}
 
开发者ID:everit-org-archive,项目名称:osgi-webconsole-blueprint,代码行数:27,代码来源:BlueprintServlet.java


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