Coder Social home page Coder Social logo

moosex-failover's Introduction

NAME

MooseX::Failover - Instantiate Moose classes with failover

VERSION

v0.2.0_01

SYNOPSIS

# In your class:

package MyClass;

use Moose;
with 'MooseX::Failover';

# When using the class

my $obj = MyClass->new( %args, failover_to => 'OtherClass' );

# If %args contains missing or invalid values or new otherwise
# fails, then $obj will be of type "OtherClass".

INSTALLATION

See How to install CPAN modules.

Required Modules

This distribution requires Perl v5.10.0.

This distribution requires the following modules:

This distribution recommends the following modules:

RECENT CHANGES

Documentation

  • Added note about making classes immutable.

Enhancements

  • Minor optimizations.

  • Uses namespace::autoclean.

See the Changes file for a longer revision history.

DESCRIPTION

This role provides constructor failover for Moose classes.

If a class cannot be instantiated because of invalid arguments (perhaps from an untrusted source), then instead it returns the failover class (passing the same arguments to that class).

This allows for cleaner design, by not forcing you to duplicate type checking for class parameters.

Note that this is roughly equivalent to using

my $obj = eval { MyClass->new(%args) //
   OtherClass->new( %args, error => $@ );

Note that your failover class should support the same methods as the original class. A use case for this role would be for instantiating Web::Machine::Resource objects, where the failover is a Web::Machine::Resource object that returns an error page.

Ideally, your failover class would satisy the Liskov Substitution Principle, so that (roughly) all provable properties of the original class are also provable of the failover class. In practice, we only care about the properties (methods and attributes) that are actually used in our programs.

AUTHOR

Robert Rothenberg <[email protected]>

Acknowledgements

Thermeon Europe.
Piers Cawley.

COPYRIGHT

Copyright 2014 Thermeon Europe.

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

This program is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose.

moosex-failover's People

Contributors

robrwo avatar

Watchers

Piers Cawley avatar Gareth Kirwan avatar  avatar James Cloos avatar

moosex-failover's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.