GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Venus::Role::Proxyable(3) User Contributed Perl Documentation Venus::Role::Proxyable(3)

Venus::Role::Proxyable - Proxyable Role

Proxyable Role for Perl 5

  package Example;
  use Venus::Class;
  with 'Venus::Role::Proxyable';
  attr 'test';
  sub build_proxy {
    my ($self, $package, $method, @args) = @_;
    return sub { [$self, $package, $method, @args] } if $method eq 'anything';
    return undef;
  }
  package main;
  my $example = Example->new(test => time);
  # $example->anything(1..4);

This package provides a hook into method dispatch resoluton via a wrapper around the "AUTOLOAD" routine which processes calls to routines which don't exist.

This package provides the following methods:

  build_proxy(string $package, string $method, any @args) (coderef | undef)

The build_proxy method should return a code reference to fulfill the method dispatching request, or undef to result in a method not found error.

Since 0.01

build_proxy example 1
  package main;
  my $example = Example->new(test => 123);
  my $build_proxy = $example->build_proxy('Example', 'everything', 1..4);
  # undef
    
build_proxy example 2
  package main;
  my $example = Example->new(test => 123);
  my $build_proxy = $example->build_proxy('Example', 'anything', 1..4);
  # sub { ... }
    

Awncorp, "awncorp@cpan.org"

Copyright (C) 2022, Awncorp, "awncorp@cpan.org".

This program is free software, you can redistribute it and/or modify it under the terms of the Apache license version 2.0.

2023-11-27 perl v5.40.2

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.