diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2012-09-11 11:53:46 +0300 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2012-09-11 12:09:03 +0300 |
commit | 03b983ee8f0373fb4240c6189d8dbafae0b6924c (patch) | |
tree | be7d2f8a98c14170ff3be60f8a5153c979fd64c4 /server | |
parent | 6af5665211a84ada1e798d07e2d5fc491ce7c09e (diff) | |
download | vaadin-framework-03b983ee8f0373fb4240c6189d8dbafae0b6924c.tar.gz vaadin-framework-03b983ee8f0373fb4240c6189d8dbafae0b6924c.zip |
Minor javadoc update
Diffstat (limited to 'server')
-rw-r--r-- | server/src/com/vaadin/server/VaadinSession.java | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/server/src/com/vaadin/server/VaadinSession.java b/server/src/com/vaadin/server/VaadinSession.java index a91c011ddf..3a379fdc76 100644 --- a/server/src/com/vaadin/server/VaadinSession.java +++ b/server/src/com/vaadin/server/VaadinSession.java @@ -1067,15 +1067,10 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable { /** * Gets all the UIs of this session. This includes UIs that have been - * requested but not yet initialized. Please note, that UIs are not - * automatically removed e.g. if the browser window is closed and that there - * is no way to manually remove a UI. Inactive UIs will thus not be released - * for GC until the entire application is released when the session has - * timed out (unless there are dangling references). Improved support for - * releasing unused uIs is planned for an upcoming alpha release of Vaadin - * 7. + * requested but not yet initialized. UIs that receive no heartbeat requests + * from the client are eventually removed from the session. * - * @return a collection of uIs belonging to this application + * @return a collection of UIs belonging to this application * * @since 7.0 */ @@ -1248,6 +1243,8 @@ public class VaadinSession implements HttpSessionBindingListener, Serializable { * * @since 7.0.0 * + * @deprecated Might be refactored or removed before 7.0.0 + * * @param ui * The UI whose status to check * @return true if the UI is alive, false if it could be removed. |