Ok, so I am building a simple disk caching class to go out and record some directory snapshots for me. The reason being that it's quicker to look up an element in a multi-dimentional hash than it is to do a 'readdir(DIR)'. Anyway, I wanted to make it general so that I can add directories to the cache according to an alias; ie. the following code:
     use RadCache;
     my $cache = RadCache->new();
     $cache->AddAlias(myAlias => 'c:\temp');
Then I can do a build like so:
     $cache->Build();
However, I want to be able to add specialty build functions so you can do something like this:
     $cache->AddSpecialty(myAlias => \&myFunc);
Where &myFunc is written in the user's file, not the RadCache file. This has been R A D...

In reply to Scoping and Objects by radman

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.