NAME

DataFlow::Node::NOP - A No-Op node, input data is passed unmodified to the output

VERSION

version 0.91.06

SYNOPSIS

use DataFlow::NOP;

my $nop = DataFlow::Node::NOP->new;

my $result = $nop->process( 'abc' );
# $result == 'abc'

DESCRIPTION

This class represents a no-op node: the very input is passed without modifications to the output.

This class is more useful as parent class than by itself.

NAME

DataFlow::Node::NOP - A No-Op node, input data is passed unmodified to the output

METHODS

The interface for DataFlow::Node::NOP is the same of DataFlow::Node.

DEPENDENCIES

DataFlow::Node

INCOMPATIBILITIES

None reported.

BUGS AND LIMITATIONS

Please report any bugs or feature requests to bug-dataflow@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

Alexei Znamensky <russoz@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Alexei Znamensky.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.