[
https://jira.jboss.org/jira/browse/JBOSGI-267?page=com.atlassian.jira.plu...
]
Thomas Diesler resolved JBOSGI-267.
-----------------------------------
Resolution: Done
Bundle resolution is now all done in PackageAdminImpl
// Advance the bundles to stage CLASSLOADER and check at the end
advanceBundlesToClassloader(resolvableBundles);
try
{
DeployerClient deployerClient = getBundleManager().getDeployerClient();
deployerClient.checkComplete();
}
catch (DeploymentException ex)
{
log.error("Error resolving bundles: " + resolvableBundles, ex);
allResolved = false;
}
We only check for completness at the end when all bundles have been moved to CLASSLOADER
Allow multiple bundles to change state at once
----------------------------------------------
Key: JBOSGI-267
URL:
https://jira.jboss.org/jira/browse/JBOSGI-267
Project: JBoss OSGi
Issue Type: Feature Request
Security Level: Public(Everyone can see)
Components: Core Framework
Reporter: Thomas Diesler
Assignee: Thomas Diesler
Fix For: Framework 1.0.0 Alpha4
Currently the BundleManager can only reslove bundles one-by-one
deployerClient.change(unit.getName(), DeploymentStages.CLASSLOADER);
deployerClient.checkComplete(unit.getName());
bundleState.changeState(Bundle.RESOLVED);
this results in uglyness in PackageAdmin
int resolved = 1;
while (resolved > 0)
{
resolved = 0;
Iterator<OSGiBundleState> it = resolvableBundles.iterator();
while (it.hasNext())
{
OSGiBundleState bundleState = it.next();
if (bundleManager.resolveBundle(bundleState, false))
{
it.remove();
resolved++;
}
}
}
PackageAdmin should be able to use an API that resolves multiple deployemnts at once.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira