IPC::MorseSignals - Communicate between processes with Morse signals.


IPC-MorseSignals documentation Contained in the IPC-MorseSignals distribution.

Index


Code Index:

NAME

Top

IPC::MorseSignals - Communicate between processes with Morse signals.

VERSION

Top

Version 0.15

SYNOPSIS

Top

    # In the sender process
    use IPC::MorseSignals::Emitter;

    my $deuce = new IPC::MorseSignals::Emitter speed => 1024;
    $deuce->post('HLAGH') for 1 .. 3;
    $deuce->send($pid);

    ...

    # In the receiver process
    use IPC::MorseSignals::Receiver;

    local %SIG;
    my $pants = new IPC::MorseSignals::Receiver \%SIG, done => sub {
     print STDERR "GOT $_[1]\n";
    };

DESCRIPTION

Top

This module implements a rare form of IPC by sending Morse-like signals through SIGUSR1 and SIGUSR2. Both of those signals are used, so you won't be able to keep them for something else when you use this module.

IPC::MorseSignals::Emitter is a base class for emitters ;
IPC::MorseSignals::Receiver is a base class for receivers.

But, seriously, use something else for your IPC. :)

DEPENDENCIES

Top

You need the complete Bit::MorseSignals distribution.

Carp (standard since perl 5), POSIX (idem) and Time::HiRes (since perl 5.7.3) are also required.

SEE ALSO

Top

IPC::MorseSignals::Emitter, IPC::MorseSignals::Receiver.

Bit::MorseSignals, Bit::MorseSignals::Emitter, Bit::MorseSignals::Receiver.

perlipc for information about signals in perl.

For truly useful IPC, search for shared memory, pipes and semaphores.

AUTHOR

Top

Vincent Pit, <perl at profvince.com>, http://www.profvince.com.

You can contact me by mail or on #perl @ FreeNode (vincent or Prof_Vince).

BUGS

Top

Please report any bugs or feature requests to bug-ipc-morsesignals at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=IPC-MorseSignals. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc IPC::MorseSignals

ACKNOWLEDGEMENTS

Top

Thanks for the inspiration, mofino ! I hope this module will fill all your IPC needs. :)

COPYRIGHT & LICENSE

Top


IPC-MorseSignals documentation Contained in the IPC-MorseSignals distribution.
package IPC::MorseSignals;

use strict;
use warnings;

our $VERSION = '0.15';

1; # End of IPC::MorseSignals