Group Packaging

[ComponentDesignPatterns | CategoryProtoPattern]

Pattern: Group Packaging

Component classes must be "packaged" so that they can be deployed. Packaging supports the integration of components into a system by providing the ability to instantiate components, query their interfaces and bind them to the roles that they must play in the AbstractInteractions used in the system.

                           ***

How do you package your components for deployment?

You are developing multiple component classes for use within a ComponentFramework. They must be packaged for deployment.

Too many component classes in one package can introduce redundant deployment for users who don't need all the classes. Packaging component classes individually increases initialisation time if components are linked into the system at run-time.

The component classes are closely related or are designed to be used together. Users will most probably instantiate the majority of the component classes in the same system.

Therefore: Package multiple component classes in a single unit of deployment when those components are very likely to be used together.

                           ***

GroupPackaging reduces the initialisation overhead caused by dynamically loading the component classes into the system.

Group Packaging closely related components reduces the overhead due to loading unused code, because a system is likely to instantiate most of the component classes in the package. If a system is most likely to use individual component classes, use IndividualPackaging.

Examples of this pattern include:


EditText of this page (last edited May 14, 1999)
FindPage by browsing or searching

This page mirrored in ComponentDesignPatterns as of April 29, 2006