// Copyright 2003-2004 The Apache Software Foundation // // Licensed 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. namespace Apache.Avalon.Container.Services { using System; /// /// Manages component instances. Generally handles lifecycles methods. /// /// /// /// A IComponentHandler implementation usually will hold a /// instance /// - althrough it's not really necessary - but respects /// the Single Responsability principle. /// /// A handler shall return a ready for use /// component instance. /// /// public interface IComponentHandler { /// /// Returns a "ready for use" component instance. /// /// The component instance object GetInstance(); /// /// Shall release or do whatever is necessary to a /// used component instance (add to a pool, for instance) /// /// The component instance void PutInstance(object instance); } }