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::Deferrable(3) User Contributed Perl Documentation Venus::Role::Deferrable(3)

Venus::Role::Deferrable - Deferrable Role

Deferrable Role for Perl 5

  package Example;
  use Venus::Class;
  with 'Venus::Role::Deferrable';
  sub test {
    my ($self, @args) = @_;
    return $self->okay(@args);
  }
  sub okay {
    my ($self, @args) = @_;
    return [@args];
  }
  package main;
  my $example = Example->new;
  # my $code = $example->defer('test');
  # sub {...}
  # $code->();
  # [...]

This package provides a mechanism for returning callbacks (i.e. closures) that dispatches method calls.

This package provides the following methods:

  defer(string $method, any @args) (coderef)

The defer method returns the named method as a callback (i.e. closure) which dispatches to the method call specified.

Since 1.80

defer example 1
  # given: synopsis
  package main;
  $example = Example->new;
  # bless({}, 'Example')
  # my $result = $example->defer('test', 1..4);
  # $result->();
  # [1..4]
    
defer example 2
  # given: synopsis
  package main;
  $example = Example->new;
  # bless({}, 'Example')
  # my $result = $example->defer('test', 1..4);
  # $result->(1..4);
  # [1..4, 1..4]
    
defer example 3
  # given: synopsis
  package main;
  $example = Example->new;
  # bless({}, 'Example')
  # my $result = $example->defer;
  # $result->();
  # bless({}, 'Example')
    

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.