Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

moosex::poe::aliased(3pm) [debian man page]

MooseX::POE::Aliased(3pm)				User Contributed Perl Documentation				 MooseX::POE::Aliased(3pm)

NAME
MooseX::POE::Aliased - A sane alias attribute for your MooseX::POE objects. VERSION
version 0.215 SYNOPSIS
use MooseX::POE; with qw(MooseX::POE::Aliased); my $obj = Foo->new( alias => "blah" ); $obj->alias("arf"); # previous one is removed, new one is set $obj->alias(undef); # no alias set DESCRIPTION
This role provides an "alias" attribute for your MooseX::POE objects. The attribute can be set, causing the current alias to be cleared and the new value to be set. METHODS
alias The alias to set for the session. Defaults to the "overload::StrVal" of the object. If the value is set at runtime the alias will be updated in the POE::Kernel. A value of "undef" inhibits aliasing. ATTRIBUTES
AUTHORS
o Chris Prather <chris@prather.org> o Ash Berlin <ash@cpan.org> o Chris Williams <chris@bingosnet.co.uk> o Yuval (nothingmuch) Kogman o Torsten Raudssus <torsten@raudssus.de> <http://www.raudssus.de/> COPYRIGHT AND LICENSE
This software is copyright (c) 2010 by Chris Prather, Ash Berlin, Chris Williams, Yuval Kogman, Torsten Raudssus. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-04-25 MooseX::POE::Aliased(3pm)

Check Out this Related Man Page

POE::Resource::Sessions(3pm)				User Contributed Perl Documentation			      POE::Resource::Sessions(3pm)

NAME
POE::Resource::Sessions - internal session manager for POE::Kernel SYNOPSIS
There is no public API. DESCRIPTION
POE::Resource::Sessions is a mix-in class for POE::Kernel. It provides the internal features that manage sessions, regardless of the session type. It is used internally by POE::Kernel. so it has no public interface. SEE ALSO
See POE::Session and POE::NFA for one type of session. CPAN also have others. See "Sessions" in POE::Kernel for a discussion about POE::Kernel sessions. See "Session Lifespans" in POE::Kernel to learn why sessions run, and how to stop them. See "Session Management" in POE::Kernel for information about managing sessions in your applications, and the events that occur when sessions come and go. See "Session Helper Methods" in POE::Kernel for friend methods between POE::Kernel and POE::Session classes. See "Resources" in POE::Kernel for for public information about POE resources. See POE::Resource for general discussion about resources and the classes that manage them. BUGS
None known. AUTHORS &; COPYRIGHTS Please see POE for more information about authors and contributors. perl v5.14.2 2012-05-15 POE::Resource::Sessions(3pm)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Accumulated value

Hi Everyone I am very new to Unix programming and I was wondering how I could add all the numbers and get a accumulated value. 1588820 user10 2463140 user11 2464096 user12 Ash (2 Replies)
Discussion started by: ashika
2 Replies

2. Shell Programming and Scripting

Running unix commands through perl

Hi all, In the directory '/temp/chris' the following files exist: chris.tar, chris.txt What i am trying to do is to assign the 'chris.tar' filename in an argument through perl, in order to do that i use the system command: $file=system("ls /temp/chris/*.tmp), but in the '$file' the exit... (2 Replies)
Discussion started by: chriss_58
2 Replies

3. UNIX for Dummies Questions & Answers

If condition issue

Hello, I am using the following code #!/bin/sh chris='rerun' chris2=$1 echo "chris=$chris" echo "chris2=$chris2" if then echo "RERUN" else echo "NOT RERUN" fi (6 Replies)
Discussion started by: chriss_58
6 Replies

4. Ubuntu

Bash to Ash, errors and adjustments

I wrote Bash script and now I want to convert it to Ash. One headache is this function: do_adduser() { setaddprompt _arr_add=("Add manually" "Add via TXT" "return to main menu" "exit program") select add_action in "${_arr_add}" do case "$REPLY" in 1)... (7 Replies)
Discussion started by: fzivkovi
7 Replies