http://www.perlmonks.org?node_id=800959

Over on my blog, I've posted a request for method-naming help. I'd love comments from the monastery, as well.

—Theory

Replies are listed 'Best First'.
Re: Help Me Name DBIx::Connector Methods
by moritz (Cardinal) on Oct 13, 2009 at 22:06 UTC
    I agree with Tim Bunce's comment on your blog that a single function which options is the best solution.

    Using $obj->run::retry is a rather bad idea IMHO, because it breaks subclassing.

    Perl 6 - links to (nearly) everything that is Perl 6.
Re: Help Me Name DBIx::Connector Methods
by ctilmes (Vicar) on Oct 14, 2009 at 00:17 UTC
    $obj->run(sub {}) $obj->run(-txn => 1, sub {}); $obj->run(-svp => 1, sub {}); $obj->run(-retry => 1, sub {}); $obj->run(-txn => 1, -retry => 1, sub {}); ...
    or even set the options separately:
    $obj->runopts(-txn => 1, -retry => 1); $obj->run(sub {});