Changeset 2593 for trunk/components/blitz/resources/omero/API.ice
- Timestamp:
- 07/05/08 22:16:05 (5 months ago)
- Files:
-
- 1 modified
-
trunk/components/blitz/resources/omero/API.ice (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/blitz/resources/omero/API.ice
r2522 r2593 596 596 597 597 /* 598 * Closes the service factory and all related services. 599 */ 600 void close(); 598 * Deprecated misnomer. 599 */ 600 ["deprecated:close() is deprecated. use closeOnDestroy() instead."] void close(); 601 602 /* 603 * Marks the session for closure rather than detachment, which will 604 * be triggered by the destruction of the Glacier2 connection via 605 * router.destroySession() 606 * 607 * Closing the session rather the detaching is more secure, since all 608 * resources are removed from the server and can safely be set once 609 * it is clear that a client is finished with those resources. 610 */ 611 void closeOnDestroy(); 612 613 /* 614 * Marks the session for detachment rather than closure, which will 615 * be triggered by the destruction of the Glacier2 connection via 616 * router.destroySession() 617 * 618 * This is the default and allows a lost session to be reconnected, 619 * at a slight security cost since the session will persist longer 620 * and can be used by others if the UUID is intercepted. 621 */ 622 void detachOnDestroy(); 601 623 602 624 // Session management 603 625 604 626 /* 605 627 * Returns a list of string ids for currently active services. This will
