Lines Matching refs:to

3  * Licensed to the Apache Software Foundation (ASF) under one
7 * to you under the Apache License, Version 2.0 (the
13 * Unless required by applicable law or agreed to in writing,
39 /** makes it possible to release any objects in a ordered manner by using
48 First version gives the object no chance to disagree with that (e.g. if a
59 <li>or can have a veto to break that.</li>
70 /** try to close the object
75 … still running processes can't be canceled yet. It's not allowed to block this call till internal
77 …the <type>CloseVetoException</type>. Otherwise (if nothing exist to disagree) it must return norm…
83 … It's forbidden to catch this exception inside the called close() method because the caller must
88 …If somewhere disagree with a CloseVetoException it will not clear who has to close the object again
90 …If it is set to <FALSE/> the caller of the method close() will be the owner of this object in ever…
91 … Then it's not allowed to call close() from any other place (may a registered XCloseListener).
92 …If it is set to <TRUE/> the caller gives up his ownership. If a XCloseListener throw the veto exce…
93 …he will be the new owner of the closing object. This information is passed to the listener by a pa…
95 …he MUST try to close it again. If the closing object itself disagrees by an exception and the para…
96 …<var>DeliverOwnership</var> was set to <TRUE/> the object will be his own owner with all consequen…
98 There is no way to get the ownership back if it was delivered!
102 … already called on an object it should return without any reaction. Normally it's possible to throw
105 … but it shouldn't be used here. The veto exception should be the only way to indicates the result.
109 …<TRUE/> delegates the ownership of this closing object to any one which throw the CloseVetoExcepti…
110 …This new owner has to close the closing object again if his still running processes will be finish…