blob: 79151b3bcff7fc4e0a5e8bb41cb586eac6dcc6dd [file] [log] [blame]
<?xml version="1.0"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<document>
<properties>
<title>Fulcrum YAAFI Avalon Container Service Lifecycle</title>
<author email="siegfried.goeschl@it20one.at">Siegfried Goeschl</author>
</properties>
<body>
<section name="Decommision">
<p>
The decommision of a service covers the shutdown procedure a service
<ul>
<li>Startable.stop()</li>
<li>Disposable.dispose()</li>
<li>Finalizer</li>
</ul>
</p>
<subsection name="Startable.stop()">
<p>
Stop all of the service activities since it is guaranteed that no client
will invoke the service.
</p>
</subsection>
<subsection name="Disposable.dispose()">
<p>
Free all resources hold by the service implementation.
</p>
</subsection>
<subsection name="Finalizer">
<p>
Well, it might be never called but all resouces have been
released before.
</p>
</subsection>
</section>
</body>
</document>