The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:IOC"

IOC - A lightweight IOC (Inversion of Control) framework River stage one • 1 direct dependent • 1 total dependent

This module provide a lightweight IOC or Inversion of Control framework. Inversion of Control, sometimes called Dependency Injection, is a component management style which aims to clean up component configuration and provide a cleaner, more flexible ...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

Test::IOC - Test IOC registries River stage one • 1 direct dependent • 1 total dependent

This module provides some simple facilities to test IOC registries for correctness....

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Proxy - Proxy for the IOC Framework River stage one • 1 direct dependent • 1 total dependent

This module is a base class for all your IOC::Proxy needs. It can be used on it's own or it can be subclassed. The basic idea of the IOC::Proxy is that since we are using the IOC framework to create our object instances, we can do certain things to t...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

MooseX::IOC - Moose attributes with IOC integration River stage zero No dependents

This module provides a bridge between IOC registries and Moose objects through a custom attribute metaclass. It compliments the "default" option with a "service" option which contains a IOC::Registry path (and optional parameters). The "service" opti...

STEVAN/MooseX-IOC-0.03 - 29 Jun 2009 19:57:55 UTC

IOC::Registry - Registry singleton for the IOC Framework River stage one • 1 direct dependent • 1 total dependent

This is a singleton object which is meant to be used as a global registry for all your IoC needs....

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Service - An IOC Service object River stage one • 1 direct dependent • 1 total dependent

In this IOC framework, the IOC::Service object holds instances of components to be managed. +--------------+ +-------------------------+ | IOC::Service |---(instance)--->| <Your Component/Object> | +--------------+ +-------------------------+ | (pare...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Container - An IOC Container object River stage one • 1 direct dependent • 1 total dependent

In this IOC framework, the IOC::Container object holds instances of IOC::Service objects keyed by strings. It can also have sub-containers, which are instances of IOC::Container objects also keyed by string. +------------------+ | IOC::Container | +-...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Exceptions - Exception objects for the IOC Framework River stage one • 1 direct dependent • 1 total dependent

This module creates a number of exception classes which are used in other parts of the IOC framework....

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Interfaces - Interfaces for the IOC Framework River stage one • 1 direct dependent • 1 total dependent

This module creates a couple of class interfaces which are used in other parts of the IOC framework....

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Config::XML - An XML Config reader for IOC River stage one • 1 direct dependent • 1 total dependent

This is the second version of an XML configuration module for IOC. The first version used XML::Simple, which is a great module, but not really the best fit for this. I have now ported this over to use XML::SAX, which is much more flexible solution (n...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Service::Literal - An IOC Service object whose component is a literal value River stage one • 1 direct dependent • 1 total dependent

In this IOC framework, the IOC::Service::Literal object holds a literal value which does not need to be initialized. This IOC::Service subclass is specifically optimized to handle values which need no initialization, like literal values, such as numb...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Slinky::Container - an alternative dependency-injection container River stage zero No dependents

This module aims to be a (1) transparent and (2) simple dependency-injection (DI) container; and usually preconfigured from a configuration file. A DI-container is a special object used to load and configure other components/objects. Each object can ...

DTADY/IOC-Slinky-Container-0.1001 - 24 Nov 2011 14:48:07 UTC

IOC::Proxy::Interfaces - A IOC::Proxy subclasss to proxy objects with a given interface River stage one • 1 direct dependent • 1 total dependent

This is a subclass of IOC::Proxy which allows for the partial proxing of an object. It will only proxy the methods of a given interface, all other methods will throw a IOC::MethodNotFound exception. This could be used to (in a very weird way) emulate...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Service::Prototype - An IOC Service object which returns a prototype instance River stage one • 1 direct dependent • 1 total dependent

This class essentially can be used just like IOC::Service, the only difference is that it will return a new instance of the component each time rather than a singleton instance. +--------------+ | IOC::Service | +--------------+ | ^ | +--------------...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

lib/Parse/AFP/IOC.pm River stage zero No dependents

AUDREYT/Parse-AFP-0.25 - 16 Oct 2010 01:49:58 UTC

IOC::Service::Parameterized - An IOC Service object which accepts a set of parameters for the instance River stage one • 1 direct dependent • 1 total dependent

This is just like IOC::Service::Prototype, expect that it will accepts a set of key/value parameters to the "instance" method. It is used to support IOC::Service::Parameterized. +--------------+ | IOC::Service | +--------------+ | ^ | +--------------...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Visitor::ServiceLocator - Service locator Visitor for the IOC::Container hierarchies River stage one • 1 direct dependent • 1 total dependent

This is a IOC::Visitor object, used by the IOC::Container's "find" method to locate a service using a path syntax. +------------------+ | <<IOC::Visitor>> | +------------------+ | ^ | +------------------------------+ | IOC::Visitor::ServiceLocator | ...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Service::SetterInjection - An IOC Service object which uses Setter Injection River stage one • 1 direct dependent • 1 total dependent

In this IOC framework, the IOC::Service::SetterInjection object holds instances of components to be managed. +--------------+ | IOC::Service | +--------------+ | ^ | +-------------------------------+ | IOC::Service::SetterInjection | +---------------...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Visitor::SearchForService - Visitor for searching a IOC::Container hierarchy River stage one • 1 direct dependent • 1 total dependent

This is a IOC::Visitor object used for searching a IOC::Container hierarchy. +------------------+ | <<IOC::Visitor>> | +------------------+ | ^ | +--------------------------------+ | IOC::Visitor::SearchForService | +--------------------------------+...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC

IOC::Container::MethodResolution - An IOC Container object which support method resolution of services River stage one • 1 direct dependent • 1 total dependent

In this IOC framework, the IOC::Container::MethodResolution object holds instances of keyed IOC::Service objects which can be called as methods. +----------------+ | IOC::Container | +----------------+ | ^ | +----------------------------------+ | IOC...

STEVAN/IOC-0.29 - 27 Apr 2007 00:57:28 UTC
29 results (0.018 seconds)