| AnyEvent-Subprocess documentation | Contained in the AnyEvent-Subprocess distribution. |
AnyEvent::Subprocess::Delegate - role representing a delegate
version 1.102912
All delegates consume this role; it provides name and is a type
tag.
Returns a deep copy of the delegate.
The name of the delegate. You can only have one delegate of each name per class.
Jonathan Rockway <jrockway@cpan.org>
This software is copyright (c) 2011 by Jonathan Rockway.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| AnyEvent-Subprocess documentation | Contained in the AnyEvent-Subprocess distribution. |
package AnyEvent::Subprocess::Delegate; BEGIN { $AnyEvent::Subprocess::Delegate::VERSION = '1.102912'; } # ABSTRACT: role representing a delegate use Moose::Role; with 'MooseX::Clone'; has 'name' => ( is => 'ro', isa => 'Str', required => 1, ); 1;
__END__