NAME
Evo::Train - A train, running engine
VERSION
version 0.0153
SYNOPSIS
use Evo::Manager;
my $mngr = Evo::Manager->new;
my $train = $mngr->build_train;
our $foo = 'Non blocking';
# will print Non blocking
$train->asap(
sub {
local $foo = 'Blocking';
$train->asap(sub { say $foo });
}
);
DESCRIPTION
This is a subclass of Railway::Train
METHODS
is_dsl_stash
my $bool = $self->is_dsl_stash;
Returns true if we are in this train, false otherwise
AUTHOR
alexbyk.com
COPYRIGHT AND LICENSE
This software is copyright (c) 2015 by alexbyk.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.