Package org.nuxeo.runtime.reload
Class ReloadResult
- java.lang.Object
-
- org.nuxeo.runtime.reload.ReloadResult
-
public class ReloadResult extends Object
Result of hot reload operation.- Since:
- 9.3
-
-
Field Summary
Fields Modifier and Type Field Description protected List<org.osgi.framework.Bundle>
deployedBundles
protected List<org.osgi.framework.Bundle>
undeployedBundles
Be aware that theses bundles have been uninstalled, some methods may not work.
-
Constructor Summary
Constructors Constructor Description ReloadResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<org.osgi.framework.Bundle>
deployedBundles()
Stream<org.osgi.framework.Bundle>
deployedBundlesAsStream()
Stream<File>
deployedFilesAsStream()
ReloadResult
merge(ReloadResult result)
List<org.osgi.framework.Bundle>
undeployedBundles()
Stream<org.osgi.framework.Bundle>
undeployedBundlesAsStream()
-
-
-
Field Detail
-
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 Detail
-
ReloadResult
public ReloadResult()
-
-
Method Detail
-
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()
-
deployedFilesAsStream
public Stream<File> deployedFilesAsStream()
-
merge
public ReloadResult merge(ReloadResult result)
-
-