public class ReloadResult
extends Object
Result of hot reload operation.
- Since:
- 9.3
-
Field Summary
Fields
protected final List<org.osgi.framework.Bundle>
protected final List<org.osgi.framework.Bundle>
Be aware that theses bundles have been uninstalled, some methods may not work.
-
Constructor Summary
Constructors
-
Method Summary
List<org.osgi.framework.Bundle>
Stream<org.osgi.framework.Bundle>
List<org.osgi.framework.Bundle>
Stream<org.osgi.framework.Bundle>
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
undeployedBundles
protected final List<org.osgi.framework.Bundle> undeployedBundles
Be aware that theses bundles have been uninstalled, some methods may not work.
-
deployedBundles
protected final List<org.osgi.framework.Bundle> deployedBundles
-
Constructor Details
-
ReloadResult
public ReloadResult()
-
Method Details
-
undeployedBundles
public List<org.osgi.framework.Bundle> undeployedBundles()
-
undeployedBundlesAsStream
public Stream<org.osgi.framework.Bundle> undeployedBundlesAsStream()
- Since:
- 10.3
-
deployedBundles
public List<org.osgi.framework.Bundle> deployedBundles()
-
deployedBundlesAsStream
public Stream<org.osgi.framework.Bundle> deployedBundlesAsStream()
-
-